@cspell/eslint-plugin 7.3.3 → 7.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -39,11 +39,11 @@
39
39
  "properties": {
40
40
  "allowCompoundWords": {
41
41
  "default": false,
42
- "description": "True to enable compound word checking. See [Case Sensitivity](https://cspell.org/docs/case-sensitive/) for more details.",
42
+ "description": "True to enable compound word checking. See https://cspell.org/docs/case-sensitive/ for more details.",
43
43
  "type": "boolean"
44
44
  },
45
45
  "dictionaries": {
46
- "description": "Optional list of dictionaries to use. Each entry should match the name of the dictionary.\n\nTo remove a dictionary from the list, add `!` before the name.\n\nFor example, `!typescript` will turn off the dictionary with the name `typescript`.\n\nSee the [Dictionaries](https://cspell.org/docs/dictionaries/) and [Custom Dictionaries](https://cspell.org/docs/dictionaries-custom/) for more details.",
46
+ "description": "Optional list of dictionaries to use. Each entry should match the name of the dictionary.",
47
47
  "items": {
48
48
  "description": "Reference to a dictionary by name. One of:\n- {@link DictionaryRef } \n- {@link DictionaryNegRef }",
49
49
  "type": "string"
@@ -85,7 +85,7 @@
85
85
  },
86
86
  "type": {
87
87
  "default": "S",
88
- "description": "Type of file: S - single word per line, W - each line can contain one or more words separated by space, C - each line is treated like code (Camel Case is allowed). Default is S. C is the slowest to load due to the need to split each line based upon code splitting rules.",
88
+ "description": "Type of file:\n- S - single word per line,\n- W - each line can contain one or more words separated by space,\n- C - each line is treated like code (Camel Case is allowed).\n\nDefault is S.\n\nC is the slowest to load due to the need to split each line based upon code splitting rules.",
89
89
  "enum": [
90
90
  "S",
91
91
  "W",
@@ -111,14 +111,14 @@
111
111
  "type": "boolean"
112
112
  },
113
113
  "flagWords": {
114
- "description": "List of words to always be considered incorrect. Words found in `flagWords` override `words`.\n\nFormat of `flagWords`\n- single word entry - `word`\n- with suggestions - `word:suggestion` or `word->suggestion, suggestions`\n\nExample: ```ts \"flagWords\": [ \"color: colour\", \"incase: in case, encase\", \"canot->cannot\", \"cancelled->canceled\" ] ```",
114
+ "description": "List of words to always be considered incorrect. Words found in `flagWords` override `words`.",
115
115
  "items": {
116
116
  "type": "string"
117
117
  },
118
118
  "type": "array"
119
119
  },
120
120
  "ignoreRegExpList": {
121
- "description": "List of regular expression patterns or pattern names to exclude from spell checking.\n\nExample: `[\"href\"]` - to exclude html href pattern.\n\nRegular expressions use JavaScript regular expression syntax.\n\nExample: to ignore ALL-CAPS words\n\nJSON ```json \"ignoreRegExpList\": [\"/\\\\b[A-Z]+\\\\b/g\"] ```\n\nYAML ```yaml ignoreRegExpList: - >- /\\b[A-Z]+\\b/g ```\n\nBy default, several patterns are excluded. See [Configuration](https://cspell.org/configuration/patterns) for more details.\n\nWhile you can create your own patterns, you can also leverage several patterns that are [built-in to CSpell](https://cspell.org/types/cspell-types/types/PredefinedPatterns.html).",
121
+ "description": "List of regular expression patterns or pattern names to exclude from spell checking.",
122
122
  "items": {
123
123
  "description": "A PatternRef is a Pattern or PatternId.",
124
124
  "type": "string"
@@ -146,10 +146,10 @@
146
146
  "type": "array"
147
147
  }
148
148
  ],
149
- "description": "Allows this configuration to inherit configuration for one or more other files.\n\nSee [Importing / Extending Configuration](https://cspell.org/configuration/imports/) for more details."
149
+ "description": "Allows this configuration to inherit configuration for one or more other files.\n\nSee https://cspell.org/configuration/imports/ for more details."
150
150
  },
151
151
  "includeRegExpList": {
152
- "description": "List of regular expression patterns or defined pattern names to match for spell checking.\n\nIf this property is defined, only text matching the included patterns will be checked.\n\nWhile you can create your own patterns, you can also leverage several patterns that are [built-in to CSpell](https://cspell.org/types/cspell-types/types/PredefinedPatterns.html).",
152
+ "description": "List of regular expression patterns or defined pattern names to match for spell checking.",
153
153
  "items": {
154
154
  "description": "A PatternRef is a Pattern or PatternId.",
155
155
  "type": "string"
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "7.3.3",
6
+ "version": "7.3.4",
7
7
  "description": "CSpell ESLint plugin",
8
8
  "keywords": [
9
9
  "cspell",
@@ -69,10 +69,10 @@
69
69
  "typescript": "^5.2.2"
70
70
  },
71
71
  "dependencies": {
72
- "@cspell/cspell-types": "7.3.3",
73
- "cspell-lib": "7.3.3",
72
+ "@cspell/cspell-types": "7.3.4",
73
+ "cspell-lib": "7.3.4",
74
74
  "estree-walker": "^3.0.3",
75
75
  "synckit": "^0.8.5"
76
76
  },
77
- "gitHead": "da65ffafaa6a039cedc52d9e029c53ddd273a1fb"
77
+ "gitHead": "7849a4ff2561453653fae9b9067b39252aeb773f"
78
78
  }