File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 11/**
2- * Debounces a callback. Uses the `decorationDebounceDelayMs` configuration
3- * value to determine the debounce delay.
2+ * Debounces a callback.
43 */
54export class Debouncer {
65 private timeoutHandle : ReturnType < typeof setTimeout > | null = null ;
You can’t perform that action at this time.
0 commit comments