Skip to content

Commit 032ba31

Browse files
Remove .stylelintignore and instead use .gitignore (#3232)
1 parent ea59f13 commit 032ba31

3 files changed

Lines changed: 3 additions & 11 deletions

File tree

.stylelintignore

Lines changed: 0 additions & 7 deletions
This file was deleted.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
"fix:meta": "pnpm run meta-updater && pnpm -r exec prettier --write tsconfig.json package.json",
1616
"fix:syncpack": "syncpack fix",
1717
"fix:eslint": "pnpm lint:ts --fix",
18-
"fix:style": "stylelint '**/*.{css,scss}' --fix",
18+
"fix:style": "stylelint '**/*.{css,scss}' --ignore-path .gitignore --fix",
1919
"fix:prettier": "prettier --write --list-different .",
2020
"lint:meta": "pnpm run meta-updater --test",
2121
"lint:syncpack": "syncpack lint",
2222
"lint:ts": "eslint packages",
2323
"lint:prettier": "prettier --check .",
24-
"lint:style": "stylelint '**/*.{css,scss}'",
24+
"lint:style": "stylelint '**/*.{css,scss}' --ignore-path .gitignore",
2525
"lint": "pnpm run typecheck && pnpm run lint:meta && pnpm run lint:syncpack && pnpm run lint:ts && pnpm run lint:style",
2626
"init-vscode-sandbox": "pnpm -F @cursorless/cursorless-vscode init-launch-sandbox",
2727
"meta-updater": "env NODE_OPTIONS=--import=tsx meta-updater",

packages/common/src/Debouncer.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/**
2-
* Debounces a callback. Uses the `decorationDebounceDelayMs` configuration
3-
* value to determine the debounce delay.
2+
* Debounces a callback.
43
*/
54
export class Debouncer {
65
private timeoutHandle: ReturnType<typeof setTimeout> | null = null;

0 commit comments

Comments
 (0)