@cspell/eslint-plugin 10.2.0 → 10.2.1

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.
@@ -152,11 +152,11 @@ exports.optionsSchema = {
152
152
  "type": "string"
153
153
  },
154
154
  "flagWords": {
155
- "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\" ] ```",
155
+ "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\" ] ```\n\nCase Sensitivity:\n\nA word is flagged if it exactly matches an entry, or if its lowercased form exactly matches an entry. In practice this means:\n- An entry written in **all lowercase** (e.g. `avocado`) flags that word in any casing found in the document — `avocado`, `Avocado`, and `AVOCADO` are all flagged.\n- An entry containing **any uppercase letter** (e.g. `Avocado`) only flags that exact casing — `avocado` and `AVOCADO` are not flagged.",
156
156
  "items": {
157
157
  "type": "string"
158
158
  },
159
- "markdownDescription": "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:\n```ts\n\"flagWords\": [\n \"color: colour\",\n \"incase: in case, encase\",\n \"canot->cannot\",\n \"cancelled->canceled\"\n]\n```",
159
+ "markdownDescription": "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:\n```ts\n\"flagWords\": [\n \"color: colour\",\n \"incase: in case, encase\",\n \"canot->cannot\",\n \"cancelled->canceled\"\n]\n```\n\nCase Sensitivity:\n\nA word is flagged if it exactly matches an entry, or if its lowercased form exactly matches an entry.\nIn practice this means:\n- An entry written in **all lowercase** (e.g. `avocado`) flags that word in any casing found in the\n document — `avocado`, `Avocado`, and `AVOCADO` are all flagged.\n- An entry containing **any uppercase letter** (e.g. `Avocado`) only flags that exact casing —\n `avocado` and `AVOCADO` are not flagged.",
160
160
  "type": "array"
161
161
  },
162
162
  "ignoreWords": {
@@ -210,11 +210,11 @@ exports.optionsSchema = {
210
210
  "type": "boolean"
211
211
  },
212
212
  "flagWords": {
213
- "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\" ] ```",
213
+ "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\" ] ```\n\nCase Sensitivity:\n\nA word is flagged if it exactly matches an entry, or if its lowercased form exactly matches an entry. In practice this means:\n- An entry written in **all lowercase** (e.g. `avocado`) flags that word in any casing found in the document — `avocado`, `Avocado`, and `AVOCADO` are all flagged.\n- An entry containing **any uppercase letter** (e.g. `Avocado`) only flags that exact casing — `avocado` and `AVOCADO` are not flagged.",
214
214
  "items": {
215
215
  "type": "string"
216
216
  },
217
- "markdownDescription": "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:\n```ts\n\"flagWords\": [\n \"color: colour\",\n \"incase: in case, encase\",\n \"canot->cannot\",\n \"cancelled->canceled\"\n]\n```",
217
+ "markdownDescription": "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:\n```ts\n\"flagWords\": [\n \"color: colour\",\n \"incase: in case, encase\",\n \"canot->cannot\",\n \"cancelled->canceled\"\n]\n```\n\nCase Sensitivity:\n\nA word is flagged if it exactly matches an entry, or if its lowercased form exactly matches an entry.\nIn practice this means:\n- An entry written in **all lowercase** (e.g. `avocado`) flags that word in any casing found in the\n document — `avocado`, `Avocado`, and `AVOCADO` are all flagged.\n- An entry containing **any uppercase letter** (e.g. `Avocado`) only flags that exact casing —\n `avocado` and `AVOCADO` are not flagged.",
218
218
  "type": "array"
219
219
  },
220
220
  "ignoreRegExpList": {
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public",
5
5
  "provenance": true
6
6
  },
7
- "version": "10.2.0",
7
+ "version": "10.2.1",
8
8
  "description": "CSpell ESLint plugin",
9
9
  "keywords": [
10
10
  "cspell",
@@ -83,8 +83,8 @@
83
83
  "@internal/cspell-eslint-plugin-scripts": "",
84
84
  "@types/estree": "^1.0.9",
85
85
  "@types/mocha": "^10.0.10",
86
- "@typescript-eslint/parser": "^8.68.0",
87
- "@typescript-eslint/types": "^8.68.0",
86
+ "@typescript-eslint/parser": "^8.69.0",
87
+ "@typescript-eslint/types": "^8.69.0",
88
88
  "eslint": "^10.9.1",
89
89
  "eslint-plugin-jsonc": "^3.4.2",
90
90
  "eslint-plugin-mdx": "^3.8.1",
@@ -92,22 +92,22 @@
92
92
  "eslint-plugin-react": "^7.37.5",
93
93
  "eslint-plugin-simple-import-sort": "^14.0.0",
94
94
  "eslint-plugin-yml": "^3.8.1",
95
- "globals": "^17.11.0",
95
+ "globals": "^17.12.0",
96
96
  "jsonc-eslint-parser": "^3.3.0",
97
97
  "mocha": "^11.8.0",
98
98
  "ts-json-schema-generator": "2.9.0",
99
99
  "typescript": "~6.0.3",
100
- "typescript-eslint": "^8.68.0",
100
+ "typescript-eslint": "^8.69.0",
101
101
  "yaml-eslint-parser": "^2.1.0"
102
102
  },
103
103
  "dependencies": {
104
- "@cspell/cspell-types": "10.2.0",
105
- "@cspell/url": "10.2.0",
106
- "cspell-lib": "10.2.0",
104
+ "@cspell/cspell-types": "10.2.1",
105
+ "@cspell/url": "10.2.1",
106
+ "cspell-lib": "10.2.1",
107
107
  "synckit": "^0.11.13"
108
108
  },
109
109
  "peerDependencies": {
110
110
  "eslint": "^8 || ^9 || ^10"
111
111
  },
112
- "gitHead": "2d310afc22fa500b1be07e3c2e2d3897ec00daad"
112
+ "gitHead": "67a64ad0f3f4dcb681f9b9deac60c9758619ffbc"
113
113
  }