@cspell/eslint-plugin 7.3.4 → 7.3.6

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 https://cspell.org/docs/case-sensitive/ for more details.",
42
+ "description": "True to enable compound word checking. See [Case Sensitivity](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.",
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.",
47
47
  "items": {
48
48
  "description": "Reference to a dictionary by name. One of:\n- {@link DictionaryRef } \n- {@link DictionaryNegRef }",
49
49
  "type": "string"
@@ -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`.",
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\" ] ```",
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.",
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).",
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 https://cspell.org/configuration/imports/ for more details."
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."
150
150
  },
151
151
  "includeRegExpList": {
152
- "description": "List of regular expression patterns or defined pattern names to match for spell checking.",
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).",
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.4",
6
+ "version": "7.3.6",
7
7
  "description": "CSpell ESLint plugin",
8
8
  "keywords": [
9
9
  "cspell",
@@ -60,7 +60,7 @@
60
60
  "@types/estree": "^1.0.1",
61
61
  "@types/mocha": "^10.0.1",
62
62
  "@typescript-eslint/parser": "^5.62.0",
63
- "@typescript-eslint/types": "^6.6.0",
63
+ "@typescript-eslint/types": "^6.7.0",
64
64
  "@typescript-eslint/typescript-estree": "^5.62.0",
65
65
  "eslint": "^8.49.0",
66
66
  "eslint-plugin-react": "^7.33.2",
@@ -69,10 +69,10 @@
69
69
  "typescript": "^5.2.2"
70
70
  },
71
71
  "dependencies": {
72
- "@cspell/cspell-types": "7.3.4",
73
- "cspell-lib": "7.3.4",
72
+ "@cspell/cspell-types": "7.3.6",
73
+ "cspell-lib": "7.3.6",
74
74
  "estree-walker": "^3.0.3",
75
75
  "synckit": "^0.8.5"
76
76
  },
77
- "gitHead": "7849a4ff2561453653fae9b9067b39252aeb773f"
77
+ "gitHead": "64ab7715f3f6566c1917084557f2ee415798c6f0"
78
78
  }