@cspell/eslint-plugin 8.18.1 → 8.19.0

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.
@@ -112,6 +112,11 @@ exports.optionsSchema = {
112
112
  "markdownDescription": "Optional description of the contents / purpose of the dictionary.",
113
113
  "type": "string"
114
114
  },
115
+ "ignoreForbiddenWords": {
116
+ "description": "Some dictionaries may contain forbidden words to prevent compounding from generating words that are not valid in the language. These are often words that are used in other languages or might be generated through compounding. This setting allows flagged words to be ignored when checking the dictionary. The effect is similar to the word not being in the dictionary.",
117
+ "markdownDescription": "Some dictionaries may contain forbidden words to prevent compounding from generating\nwords that are not valid in the language. These are often\nwords that are used in other languages or might be generated through compounding.\nThis setting allows flagged words to be ignored when checking the dictionary.\nThe effect is similar to the word not being in the dictionary.",
118
+ "type": "boolean"
119
+ },
115
120
  "name": {
116
121
  "description": "This is the name of a dictionary.\n\nName Format:\n- Must contain at least 1 number or letter.\n- Spaces are allowed.\n- Leading and trailing space will be removed.\n- Names ARE case-sensitive.\n- Must not contain `*`, `!`, `;`, `,`, `{`, `}`, `[`, `]`, `~`.",
117
122
  "markdownDescription": "This is the name of a dictionary.\n\nName Format:\n- Must contain at least 1 number or letter.\n- Spaces are allowed.\n- Leading and trailing space will be removed.\n- Names ARE case-sensitive.\n- Must not contain `*`, `!`, `;`, `,`, `{`, `}`, `[`, `]`, `~`.",
@@ -100,6 +100,11 @@ export declare const optionsSchema: {
100
100
  markdownDescription: string;
101
101
  type: string;
102
102
  };
103
+ ignoreForbiddenWords: {
104
+ description: string;
105
+ markdownDescription: string;
106
+ type: string;
107
+ };
103
108
  name: {
104
109
  description: string;
105
110
  markdownDescription: string;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public",
5
5
  "provenance": true
6
6
  },
7
- "version": "8.18.1",
7
+ "version": "8.19.0",
8
8
  "description": "CSpell ESLint plugin",
9
9
  "keywords": [
10
10
  "cspell",
@@ -81,35 +81,35 @@
81
81
  },
82
82
  "devDependencies": {
83
83
  "@eslint/eslintrc": "^3.3.1",
84
- "@eslint/js": "^9.23.0",
84
+ "@eslint/js": "^9.24.0",
85
85
  "@internal/cspell-eslint-plugin-scripts": "",
86
86
  "@types/estree": "^1.0.7",
87
87
  "@types/mocha": "^10.0.10",
88
- "@typescript-eslint/parser": "^8.28.0",
89
- "@typescript-eslint/types": "^8.28.0",
90
- "eslint": "^9.23.0",
88
+ "@typescript-eslint/parser": "^8.30.1",
89
+ "@typescript-eslint/types": "^8.30.1",
90
+ "eslint": "^9.24.0",
91
91
  "eslint-plugin-jsonc": "^2.20.0",
92
- "eslint-plugin-mdx": "^3.3.1",
92
+ "eslint-plugin-mdx": "^3.4.0",
93
93
  "eslint-plugin-n": "^17.17.0",
94
- "eslint-plugin-react": "^7.37.4",
94
+ "eslint-plugin-react": "^7.37.5",
95
95
  "eslint-plugin-simple-import-sort": "^12.1.1",
96
96
  "eslint-plugin-yml": "^1.17.0",
97
97
  "globals": "^16.0.0",
98
98
  "jsonc-eslint-parser": "^2.4.0",
99
99
  "mocha": "^11.1.0",
100
- "ts-json-schema-generator": "^2.3.0",
101
- "typescript": "~5.8.2",
102
- "typescript-eslint": "^8.28.0",
100
+ "ts-json-schema-generator": "^2.4.0",
101
+ "typescript": "~5.8.3",
102
+ "typescript-eslint": "^8.30.1",
103
103
  "yaml-eslint-parser": "^1.3.0"
104
104
  },
105
105
  "dependencies": {
106
- "@cspell/cspell-types": "8.18.1",
107
- "@cspell/url": "8.18.1",
108
- "cspell-lib": "8.18.1",
109
- "synckit": "^0.10.3"
106
+ "@cspell/cspell-types": "8.19.0",
107
+ "@cspell/url": "8.19.0",
108
+ "cspell-lib": "8.19.0",
109
+ "synckit": "^0.11.4"
110
110
  },
111
111
  "peerDependencies": {
112
112
  "eslint": "^7 || ^8 || ^9"
113
113
  },
114
- "gitHead": "4d647f52891c3300221ff9b2341b0474f68b30b5"
114
+ "gitHead": "ebfecabea342ba34ee368178f3864a7a194936d5"
115
115
  }