You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[ignorePaths](#settings-ignorepaths)|[`Glob`](#glob)​`[]`| Glob patterns of files to be ignored. |
37
+
|[ignoreRandomStrings](#settings-ignorerandomstrings)|`boolean`| Ignore sequences of characters that look like random strings. |
37
38
|[ignoreRegExpList](#settings-ignoreregexplist)|[`RegExpPatternList`](#regexppatternlist)| List of regular expression patterns or pattern names to exclude from spell checking. |
38
39
|[ignoreWords](#settings-ignorewords)|`string`​`[]`| List of words to be ignored. An ignored word will not show up as an error, even if it is |
39
40
|[import](#settings-import)|[`FsPath`](#fspath)<br />[`FsPath`](#fspath)​`[]`| Allows this configuration to inherit configuration for one or more other files. |
@@ -44,6 +45,7 @@ format: md
44
45
|[loadDefaultConfiguration](#settings-loaddefaultconfiguration)|`boolean`| By default, the bundled dictionary configurations are loaded. Explicitly setting this to `false`|
45
46
|[maxDuplicateProblems](#settings-maxduplicateproblems)|`number`| The maximum number of times the same word can be flagged as an error in a file. |
46
47
|[maxNumberOfProblems](#settings-maxnumberofproblems)|`number`| The maximum number of problems to report in a file. |
48
+
|[minRandomLength](#settings-minrandomlength)|`number`| The minimum length of a random string to be ignored. |
47
49
|[minWordLength](#settings-minwordlength)|`number`| The minimum length of a word before checking it against a dictionary. |
48
50
|[name](#settings-name)|`string`| Optional name of configuration. |
49
51
|[noConfigSearch](#settings-noconfigsearch)|`boolean`| Prevents searching for local configuration when checking individual documents. |
@@ -657,6 +659,31 @@ Glob patterns are relative to the [globRoot](#globroot) of the configuration f
The minimum length of a random string to be ignored.
989
+
990
+
</dd>
991
+
992
+
<dt>Type</dt>
993
+
<dd>
994
+
995
+
`number`
996
+
997
+
</dd>
998
+
</dl>
999
+
1000
+
1001
+
1002
+
951
1003
---
952
1004
953
1005
#### `minWordLength` {#settings-minwordlength}
@@ -1697,8 +1749,8 @@ Store the results of processed files in order to only operate on the changed one
1697
1749
<dd>
1698
1750
1699
1751
The Strategy to use to detect if a file has changed.
1700
-
-`metadata` - uses the file system timestamp and size to detect changes (fastest).
1701
1752
-`content` - uses a hash of the file content to check file changes (slower - more accurate).
1753
+
-`metadata` - uses the file system timestamp and size to detect changes (fastest, may not work in CI).
1702
1754
1703
1755
</dd>
1704
1756
@@ -6235,6 +6287,7 @@ This is a written language locale like: `en`, `en-GB`, `fr`, `es`, `de` or `en,f
6235
6287
| [filename](#overridesettings-filename) | [`Glob`](#glob)<br />[`Glob`](#glob)​`[]` | Glob pattern or patterns to match against. |
6236
6288
| [flagWords](#overridesettings-flagwords) | `string`​`[]` | List of words to always be considered incorrect. Words found in `flagWords` override `words`. |
| [ignoreRandomStrings](#overridesettings-ignorerandomstrings) | `boolean` | Ignore sequences of characters that look like random strings. |
6238
6291
| [ignoreRegExpList](#overridesettings-ignoreregexplist) | [`RegExpPatternList`](#regexppatternlist) | List of regular expression patterns or pattern names to exclude from spell checking. |
6239
6292
| [ignoreWords](#overridesettings-ignorewords) | `string`​`[]` | List of words to be ignored. An ignored word will not show up as an error, even if it is |
6240
6293
| [includeRegExpList](#overridesettings-includeregexplist) | [`RegExpPatternList`](#regexppatternlist) | List of regular expression patterns or defined pattern names to match for spell checking. |
@@ -6244,6 +6297,7 @@ This is a written language locale like: `en`, `en-GB`, `fr`, `es`, `de` or `en,f
6244
6297
| [loadDefaultConfiguration](#overridesettings-loaddefaultconfiguration) | `boolean` | By default, the bundled dictionary configurations are loaded. Explicitly setting this to `false` |
6245
6298
| [maxDuplicateProblems](#overridesettings-maxduplicateproblems) | `number` | The maximum number of times the same word can be flagged as an error in a file. |
6246
6299
| [maxNumberOfProblems](#overridesettings-maxnumberofproblems) | `number` | The maximum number of problems to report in a file. |
6300
+
| [minRandomLength](#overridesettings-minrandomlength) | `number` | The minimum length of a random string to be ignored. |
6247
6301
| [minWordLength](#overridesettings-minwordlength) | `number` | The minimum length of a word before checking it against a dictionary. |
6248
6302
| [name](#overridesettings-name) | `string` | Optional name of configuration. |
6249
6303
| [noSuggestDictionaries](#overridesettings-nosuggestdictionaries) | [`DictionaryReference`](#dictionaryreference)​`[]` | Optional list of dictionaries that will not be used for suggestions. |
0 commit comments