Skip to content

Commit 6790b58

Browse files
committed
Accept document modification suggestions
1 parent ca43c0d commit 6790b58

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: docs/checkers/eslint.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ Advanced object configuration table of `options.eslint`
3737
| lintCommand | `string` | This value is required | `lintCommand` will be executed at build mode, and will also be used as default config for dev mode when `eslint.dev.eslint` is nullable. |
3838
| dev.overrideConfig | [`ESLint.Options`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/eslint/index.d.ts) | `undefined` | **(Only in dev mode)** You can override the options of the translated from `lintCommand`. Config priority: `const eslint = new ESLint({cwd: root, ...translatedOptions, ...pluginConfig.eslint.dev?.overrideConfig, })`. |
3939
| dev.logLevel | `('error' \| 'warning')[]` | `['error', 'warning']` | **(Only in dev mode)** Which level of ESLint should be emitted to terminal and overlay in dev mode |
40-
dev.debounce | `number` | `undefined` | Avoid repeated formatting files when your editor set lint on save action and avoid multiple checks in a short time |
40+
dev.debounce | `number` | `undefined` | milliseconds for debounce. Avoid repeated formatting files when your editor set lint on save action and avoid multiple checks in a short time |

Diff for: docs/checkers/typescript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ Advanced object configuration table of `options.typescript`.
2323
| root | `string` | [Vite config](https://vitejs.dev/config/#root) `root` | Root path to find tsconfig file |
2424
| tsconfigPath | `string` | `"tsconfig.json"` | Relative tsconfig path to `root` |
2525
| buildMode | `boolean` | `false` | Add [`--build`](https://www.typescriptlang.org/docs/handbook/project-references.html) to `tsc` flag, note that `noEmit` does NOT work if `buildMode` is `true` ([#36917](https://github.com/microsoft/TypeScript/issues/36917)) |
26-
dev.debounce | `number` | `undefined` | Avoid multiple checks in a short time when your editor set lint on save action |
26+
dev.debounce | `number` | `undefined` | milliseconds for debounce. Avoid multiple checks in a short time when your editor set lint on save action |

0 commit comments

Comments
 (0)