@enormora/eslint-config-base-with-prettier 0.0.2 → 0.0.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.
package/package.json CHANGED
@@ -4,15 +4,19 @@
4
4
  "Christian Rackerseder <github@echooff.de>"
5
5
  ],
6
6
  "dependencies": {
7
- "@cspell/eslint-plugin": "10.0.0",
8
- "@eslint-community/eslint-plugin-eslint-comments": "4.7.1",
7
+ "@ben_12/eslint-simple-parser": "0.1.0",
8
+ "@cspell/eslint-plugin": "10.0.1",
9
+ "@eslint-community/eslint-plugin-eslint-comments": "4.7.2",
10
+ "@eslint/markdown": "8.0.2",
9
11
  "@stylistic/eslint-plugin": "5.10.0",
10
12
  "eslint-plugin-array-func": "5.1.1",
11
13
  "eslint-plugin-destructuring": "2.2.1",
12
14
  "eslint-plugin-import-x": "4.16.2",
15
+ "eslint-plugin-markdown-links": "0.9.0",
16
+ "eslint-plugin-markdown-preferences": "0.41.1",
13
17
  "eslint-plugin-no-barrel-files": "1.3.1",
14
18
  "eslint-plugin-no-secrets": "2.3.3",
15
- "eslint-plugin-prettier": "5.5.5",
19
+ "eslint-plugin-prettier": "5.5.6",
16
20
  "eslint-plugin-promise": "7.3.0",
17
21
  "eslint-plugin-sonarjs": "4.0.3",
18
22
  "eslint-plugin-unicorn": "64.0.0"
@@ -39,5 +43,5 @@
39
43
  "./rule-sets/restricted-syntax.js"
40
44
  ],
41
45
  "type": "module",
42
- "version": "0.0.2"
46
+ "version": "0.0.4"
43
47
  }
@@ -20,6 +20,31 @@ const restrictedSyntaxPlugin = createRestrictedSyntaxPlugin([
20
20
  'no-in-operator'
21
21
  ]);
22
22
 
23
+ export const cspellSpellcheckerOptions = {
24
+ autoFix: false,
25
+ numSuggestions: 3,
26
+ generateSuggestions: true,
27
+ ignoreImports: true,
28
+ ignoreImportProperties: true,
29
+ checkIdentifiers: true,
30
+ checkStrings: true,
31
+ checkStringTemplates: true,
32
+ checkJSXText: true,
33
+ checkComments: true,
34
+ cspell: {
35
+ words: [],
36
+ ignoreWords: [],
37
+ flagWords: [],
38
+ ignoreRegExpList: [],
39
+ includeRegExpList: [],
40
+ allowCompoundWords: true,
41
+ import: [],
42
+ dictionaries: []
43
+ },
44
+ customWordListFile: undefined,
45
+ debugMode: false
46
+ };
47
+
23
48
  export const baseSharedConfig = {
24
49
  languageOptions: {
25
50
  ecmaVersion,
@@ -185,7 +210,23 @@ export const baseSharedConfig = {
185
210
  'no-warning-comments': [
186
211
  'error',
187
212
  {
188
- terms: [ 'todo', 'fixme', 'wtf', 'falls through', 'istanbul', 'c8' ],
213
+ terms: [
214
+ 'todo',
215
+ 'fixme',
216
+ 'wtf',
217
+ 'falls through',
218
+ 'istanbul',
219
+ 'c8',
220
+ 'v8 ignore',
221
+ 'node:coverage',
222
+ 'prettier-ignore',
223
+ 'dprint-ignore',
224
+ 'cspell:disable',
225
+ 'cspell:ignore',
226
+ 'cspell:words',
227
+ 'Stryker disable',
228
+ 'Stryker restore'
229
+ ],
189
230
  location: 'anywhere'
190
231
  }
191
232
  ],
@@ -425,32 +466,6 @@ export const baseSharedConfig = {
425
466
  'import/no-rename-default': 'off',
426
467
  'import/prefer-namespace-import': 'off',
427
468
 
428
- '@cspell/spellchecker': [
429
- 'warn',
430
- {
431
- autoFix: false,
432
- numSuggestions: 3,
433
- generateSuggestions: true,
434
- ignoreImports: true,
435
- ignoreImportProperties: true,
436
- checkIdentifiers: true,
437
- checkStrings: true,
438
- checkStringTemplates: true,
439
- checkJSXText: true,
440
- checkComments: true,
441
- cspell: {
442
- words: [],
443
- ignoreWords: [],
444
- flagWords: [],
445
- ignoreRegExpList: [],
446
- includeRegExpList: [],
447
- allowCompoundWords: true,
448
- import: [],
449
- dictionaries: []
450
- },
451
- customWordListFile: undefined,
452
- debugMode: false
453
- }
454
- ]
469
+ '@cspell/spellchecker': [ 'error', cspellSpellcheckerOptions ]
455
470
  }
456
471
  };
@@ -0,0 +1 @@
1
+ import { cspellSpellcheckerOptions } from './base-shared.js';
@@ -0,0 +1,98 @@
1
+ import markdownPlugin from '@eslint/markdown';
2
+ import markdownLinksPlugin from 'eslint-plugin-markdown-links';
3
+ import markdownPreferencesPlugin from 'eslint-plugin-markdown-preferences';
4
+
5
+ export const markdownLintPlugins = {
6
+ markdown: markdownPlugin,
7
+ 'markdown-links': markdownLinksPlugin,
8
+ 'markdown-preferences': markdownPreferencesPlugin
9
+ };
10
+
11
+ export const markdownLintRules = {
12
+ 'markdown/fenced-code-language': 'error',
13
+ 'markdown/fenced-code-meta': 'off',
14
+ 'markdown/heading-increment': 'error',
15
+ 'markdown/no-bare-urls': 'error',
16
+ 'markdown/no-duplicate-definitions': 'error',
17
+ 'markdown/no-duplicate-headings': 'error',
18
+ 'markdown/no-empty-definitions': 'error',
19
+ 'markdown/no-empty-images': 'error',
20
+ 'markdown/no-empty-links': 'error',
21
+ 'markdown/no-html': 'error',
22
+ 'markdown/no-invalid-label-refs': 'error',
23
+ 'markdown/no-missing-atx-heading-space': 'error',
24
+ 'markdown/no-missing-label-refs': 'error',
25
+ 'markdown/no-missing-link-fragments': 'error',
26
+ 'markdown/no-multiple-h1': 'error',
27
+ 'markdown/no-reference-like-urls': 'error',
28
+ 'markdown/no-reversed-media-syntax': 'error',
29
+ 'markdown/no-space-in-emphasis': 'error',
30
+ 'markdown/no-unused-definitions': 'error',
31
+ 'markdown/require-alt-text': 'error',
32
+ 'markdown/table-column-count': 'error',
33
+
34
+ // markdown-links: external network check is opt-in to keep CI deterministic;
35
+ // local-path and fragment checks are pure wins.
36
+ 'markdown-links/no-dead-urls': 'off',
37
+ 'markdown-links/no-missing-fragments': 'error',
38
+ 'markdown-links/no-missing-path': 'error',
39
+ 'markdown-links/no-self-destination': 'error',
40
+
41
+ // markdown-preferences: many rules overlap with the active markdown formatter (dprint or
42
+ // prettier, depending on which base preset is used). We enable only the 8 rules from this
43
+ // plugin's `recommended` config (none of which fight either formatter) and explicitly turn
44
+ // the other 45 off. Override individually if a stricter style is desired.
45
+ 'markdown-preferences/atx-heading-closing-sequence': 'off',
46
+ 'markdown-preferences/atx-heading-closing-sequence-length': 'off',
47
+ 'markdown-preferences/blockquote-marker-alignment': 'error',
48
+ 'markdown-preferences/bullet-list-marker-style': 'off',
49
+ 'markdown-preferences/canonical-code-block-language': 'off',
50
+ 'markdown-preferences/code-fence-length': 'off',
51
+ 'markdown-preferences/code-fence-spacing': 'off',
52
+ 'markdown-preferences/code-fence-style': 'off',
53
+ 'markdown-preferences/custom-container-marker-spacing': 'off',
54
+ 'markdown-preferences/definitions-last': 'off',
55
+ 'markdown-preferences/emoji-notation': 'off',
56
+ 'markdown-preferences/emphasis-delimiters-style': 'off',
57
+ 'markdown-preferences/hard-linebreak-style': 'error',
58
+ 'markdown-preferences/heading-casing': 'off',
59
+ 'markdown-preferences/indent': 'off',
60
+ 'markdown-preferences/level1-heading-style': 'off',
61
+ 'markdown-preferences/level2-heading-style': 'off',
62
+ 'markdown-preferences/link-bracket-newline': 'off',
63
+ 'markdown-preferences/link-bracket-spacing': 'off',
64
+ 'markdown-preferences/link-destination-style': 'off',
65
+ 'markdown-preferences/link-paren-newline': 'off',
66
+ 'markdown-preferences/link-paren-spacing': 'off',
67
+ 'markdown-preferences/link-title-style': 'off',
68
+ 'markdown-preferences/list-marker-alignment': 'error',
69
+ 'markdown-preferences/max-len': 'off',
70
+ 'markdown-preferences/no-heading-trailing-punctuation': 'off',
71
+ 'markdown-preferences/no-implicit-block-closing': 'error',
72
+ 'markdown-preferences/no-laziness-blockquotes': 'error',
73
+ 'markdown-preferences/no-multi-spaces': 'off',
74
+ 'markdown-preferences/no-multiple-empty-lines': 'off',
75
+ 'markdown-preferences/no-tabs': 'off',
76
+ 'markdown-preferences/no-text-backslash-linebreak': 'error',
77
+ 'markdown-preferences/no-trailing-spaces': 'off',
78
+ 'markdown-preferences/ordered-list-marker-sequence': 'off',
79
+ 'markdown-preferences/ordered-list-marker-start': 'off',
80
+ 'markdown-preferences/ordered-list-marker-style': 'off',
81
+ 'markdown-preferences/padded-custom-containers': 'off',
82
+ 'markdown-preferences/padding-line-between-blocks': 'off',
83
+ 'markdown-preferences/prefer-autolinks': 'error',
84
+ 'markdown-preferences/prefer-fenced-code-blocks': 'error',
85
+ 'markdown-preferences/prefer-inline-code-words': 'off',
86
+ 'markdown-preferences/prefer-link-reference-definitions': 'off',
87
+ 'markdown-preferences/prefer-linked-words': 'off',
88
+ 'markdown-preferences/setext-heading-underline-length': 'off',
89
+ 'markdown-preferences/sort-definitions': 'off',
90
+ 'markdown-preferences/strikethrough-delimiters-style': 'off',
91
+ 'markdown-preferences/table-header-casing': 'off',
92
+ 'markdown-preferences/table-leading-trailing-pipes': 'off',
93
+ 'markdown-preferences/table-pipe-alignment': 'off',
94
+ 'markdown-preferences/table-pipe-spacing': 'off',
95
+ 'markdown-preferences/thematic-break-character-style': 'off',
96
+ 'markdown-preferences/thematic-break-length': 'off',
97
+ 'markdown-preferences/thematic-break-sequence-pattern': 'off'
98
+ };
@@ -1,7 +1,10 @@
1
+ import simpleParser from '@ben_12/eslint-simple-parser';
1
2
  import prettierPlugin from 'eslint-plugin-prettier';
2
3
  import { baseSharedConfig } from '../base/base-shared.js';
4
+ import { markdownLintPlugins, markdownLintRules } from '../base/markdown-lint-rules.js';
3
5
 
4
- export const baseWithPrettierConfig = {
6
+ const baseJsConfig = {
7
+ files: [ '**/*.{js,cjs,mjs,jsx,ts,cts,mts,tsx,vue}' ],
5
8
  ...baseSharedConfig,
6
9
  plugins: {
7
10
  ...baseSharedConfig.plugins,
@@ -10,6 +13,49 @@ export const baseWithPrettierConfig = {
10
13
  rules: {
11
14
  ...baseSharedConfig.rules,
12
15
 
13
- 'prettier/prettier': 'error'
16
+ 'prettier/prettier': 'error',
17
+
18
+ // Prettier owns TypeScript member delimiter formatting; the stylistic rule would only fight it.
19
+ '@stylistic/member-delimiter-style': 'off'
14
20
  }
15
21
  };
22
+
23
+ const prettierJsonConfig = {
24
+ files: [ '**/*.json' ],
25
+ languageOptions: { parser: simpleParser },
26
+ plugins: { prettier: prettierPlugin },
27
+ rules: { 'prettier/prettier': 'error' }
28
+ };
29
+
30
+ const prettierYamlConfig = {
31
+ files: [ '**/*.{yml,yaml}' ],
32
+ languageOptions: { parser: simpleParser },
33
+ plugins: { prettier: prettierPlugin },
34
+ rules: { 'prettier/prettier': 'error' }
35
+ };
36
+
37
+ const markdownConfig = {
38
+ files: [ '**/*.md' ],
39
+ plugins: {
40
+ ...markdownLintPlugins,
41
+ prettier: prettierPlugin
42
+ },
43
+ // See ../base/markdown.js for why this is pinned to commonmark instead of gfm.
44
+ language: 'markdown/commonmark',
45
+ rules: {
46
+ 'prettier/prettier': 'error',
47
+
48
+ ...markdownLintRules
49
+ }
50
+ };
51
+
52
+ export const baseWithPrettierConfig = [
53
+ baseJsConfig,
54
+ prettierJsonConfig,
55
+ markdownConfig,
56
+ prettierYamlConfig
57
+ ];
58
+
59
+ /* eslint-disable no-barrel-files/no-barrel-files -- expose cspell helper as public API so consumers can spread or call it when customizing */
60
+ export { withCspellWords } from '../base/cspell-config.js';
61
+ /* eslint-enable no-barrel-files/no-barrel-files -- end of public re-exports */
package/readme.md CHANGED
@@ -6,7 +6,10 @@ Drop-in alternative to [`@enormora/eslint-config-base`](../base/base.md) that fo
6
6
  [prettier](https://prettier.io/) instead of dprint.
7
7
 
8
8
  This preset is itself a base preset — pick this one **or** `@enormora/eslint-config-base`, never both. It contains the
9
- same set of lint rules as the regular base preset; the only difference is the formatter integration.
9
+ same set of lint rules as the regular base preset, including the semantic markdown linting stack
10
+ (`@eslint/markdown`, `eslint-plugin-markdown-links`, `eslint-plugin-markdown-preferences`). The only differences are
11
+ the formatter integration and that TOML is not covered (prettier has no native TOML support; see
12
+ [Limitations](#limitations) below).
10
13
 
11
14
  ## Install & Setup
12
15
 
@@ -21,24 +24,98 @@ Provide a `prettier.config.js` at your project root with the formatting options
21
24
 
22
25
  ```javascript
23
26
  export default {
24
- printWidth: 120,
25
- tabWidth: 4,
26
- singleQuote: true,
27
- trailingComma: "none",
28
- arrowParens: "always",
27
+ printWidth: 120,
28
+ tabWidth: 4,
29
+ singleQuote: true,
30
+ trailingComma: 'none',
31
+ arrowParens: 'always'
29
32
  };
30
33
  ```
31
34
 
32
- Create an ESLint configuration file (e.g., `eslint.config.js`) in your project and add the preset to the configuration
33
- array:
35
+ Create an ESLint configuration file (e.g., `eslint.config.js`) in your project and spread the preset into the
36
+ configuration array:
34
37
 
35
38
  ```javascript
36
- import { baseWithPrettierConfig } from "@enormora/eslint-config-base-with-prettier";
39
+ import { baseWithPrettierConfig } from '@enormora/eslint-config-base-with-prettier';
37
40
 
38
41
  export default [
39
- {
40
- ignores: ["dist/**/*"],
41
- },
42
- baseWithPrettierConfig,
42
+ {
43
+ ignores: [ 'dist/**/*' ]
44
+ },
45
+ ...baseWithPrettierConfig
43
46
  ];
44
47
  ```
48
+
49
+ `baseWithPrettierConfig` is an array of flat config blocks. The first block targets the JS/TS/Vue file set and carries
50
+ the lint rules; the remaining blocks each scope `prettier/prettier` to one file family, with the markdown block
51
+ additionally enabling the semantic markdown linters.
52
+
53
+ | Block | Files | Rule(s) |
54
+ | :------------ | :----------------------------------------- | :------------------------------------------------------------------------------ |
55
+ | JavaScript/TS | `**/*.{js,cjs,mjs,jsx,ts,cts,mts,tsx,vue}` | base lint rules + `prettier/prettier` |
56
+ | JSON | `**/*.json` | `prettier/prettier` |
57
+ | Markdown | `**/*.md` | `prettier/prettier`, `markdown/*`, `markdown-links/*`, `markdown-preferences/*` |
58
+ | YAML | `**/*.{yml,yaml}` | `prettier/prettier` |
59
+
60
+ ### Linting hidden directories
61
+
62
+ ESLint's CLI walker skips dot-directories such as `.github/` when you run `eslint .`. Because the formatter blocks
63
+ above match against file paths, they will silently _not_ run on files inside `.github/` unless you pass that path to
64
+ ESLint explicitly. The recommended lint script is therefore:
65
+
66
+ ```json
67
+ {
68
+ "scripts": {
69
+ "lint": "eslint . .github"
70
+ }
71
+ }
72
+ ```
73
+
74
+ ### Customizing or disabling the formatter on a file family
75
+
76
+ Because the blocks are plain flat config, override them the same way as any other ESLint config — add a later block
77
+ whose `files` glob overlaps the one you want to change. Later blocks win.
78
+
79
+ Disable prettier formatting for JSON entirely:
80
+
81
+ ```javascript
82
+ export default [
83
+ ...baseWithPrettierConfig,
84
+ { files: [ '**/*.json' ], rules: { 'prettier/prettier': 'off' } }
85
+ ];
86
+ ```
87
+
88
+ Ignore specific paths from formatting:
89
+
90
+ ```javascript
91
+ export default [
92
+ ...baseWithPrettierConfig,
93
+ { ignores: [ 'vendor/**/*.json', 'fixtures/**/*.md' ] }
94
+ ];
95
+ ```
96
+
97
+ ### Tweaking markdown lint rules
98
+
99
+ To override any markdown rule (from `@eslint/markdown`, `markdown-links`, or `markdown-preferences`), add a later
100
+ block — the same pattern as for any other ESLint rule:
101
+
102
+ ```javascript
103
+ export default [
104
+ ...baseWithPrettierConfig,
105
+ {
106
+ files: [ '**/*.md' ],
107
+ rules: {
108
+ 'markdown/no-html': 'off',
109
+ 'markdown/fenced-code-language': [ 'error', { required: [ 'js', 'ts' ] } ],
110
+ 'markdown-links/no-dead-urls': 'error',
111
+ 'markdown-preferences/heading-casing': [ 'error', { style: 'Sentence case' } ]
112
+ }
113
+ }
114
+ ];
115
+ ```
116
+
117
+ ## Limitations
118
+
119
+ - **No TOML coverage.** Prettier does not natively format `.toml` files. If you need TOML formatting, either use
120
+ [`@enormora/eslint-config-base`](../base/base.md) (which formats TOML via dprint) or wire your own prettier plugin
121
+ for TOML.
package/sbom.cdx.json CHANGED
@@ -9,44 +9,70 @@
9
9
  {
10
10
  "type": "application",
11
11
  "name": "packtory",
12
- "version": "0.0.15"
12
+ "version": "0.0.32"
13
13
  }
14
14
  ]
15
15
  },
16
16
  "component": {
17
17
  "type": "library",
18
18
  "name": "@enormora/eslint-config-base-with-prettier",
19
- "version": "0.0.2",
20
- "bom-ref": "pkg:npm/@enormora/eslint-config-base-with-prettier@0.0.2",
21
- "purl": "pkg:npm/@enormora/eslint-config-base-with-prettier@0.0.2"
19
+ "version": "0.0.4",
20
+ "bom-ref": "pkg:npm/@enormora/eslint-config-base-with-prettier@0.0.4",
21
+ "purl": "pkg:npm/@enormora/eslint-config-base-with-prettier@0.0.4"
22
22
  }
23
23
  },
24
24
  "components": [
25
+ {
26
+ "type": "library",
27
+ "name": "@ben_12/eslint-simple-parser",
28
+ "version": "0.1.0",
29
+ "bom-ref": "pkg:npm/@ben_12/eslint-simple-parser@0.1.0",
30
+ "scope": "required",
31
+ "licenses": [
32
+ {
33
+ "expression": "MIT"
34
+ }
35
+ ],
36
+ "purl": "pkg:npm/@ben_12/eslint-simple-parser@0.1.0"
37
+ },
25
38
  {
26
39
  "type": "library",
27
40
  "name": "@cspell/eslint-plugin",
28
- "version": "10.0.0",
29
- "bom-ref": "pkg:npm/@cspell/eslint-plugin@10.0.0",
41
+ "version": "10.0.1",
42
+ "bom-ref": "pkg:npm/@cspell/eslint-plugin@10.0.1",
30
43
  "scope": "required",
31
44
  "licenses": [
32
45
  {
33
46
  "expression": "MIT"
34
47
  }
35
48
  ],
36
- "purl": "pkg:npm/@cspell/eslint-plugin@10.0.0"
49
+ "purl": "pkg:npm/@cspell/eslint-plugin@10.0.1"
37
50
  },
38
51
  {
39
52
  "type": "library",
40
53
  "name": "@eslint-community/eslint-plugin-eslint-comments",
41
- "version": "4.7.1",
42
- "bom-ref": "pkg:npm/@eslint-community/eslint-plugin-eslint-comments@4.7.1",
54
+ "version": "4.7.2",
55
+ "bom-ref": "pkg:npm/@eslint-community/eslint-plugin-eslint-comments@4.7.2",
56
+ "scope": "required",
57
+ "licenses": [
58
+ {
59
+ "expression": "MIT"
60
+ }
61
+ ],
62
+ "purl": "pkg:npm/@eslint-community/eslint-plugin-eslint-comments@4.7.2"
63
+ },
64
+ {
65
+ "type": "library",
66
+ "name": "@eslint/markdown",
67
+ "version": "8.0.2",
68
+ "bom-ref": "pkg:npm/@eslint/markdown@8.0.2",
43
69
  "scope": "required",
44
70
  "licenses": [
45
71
  {
46
72
  "expression": "MIT"
47
73
  }
48
74
  ],
49
- "purl": "pkg:npm/@eslint-community/eslint-plugin-eslint-comments@4.7.1"
75
+ "purl": "pkg:npm/@eslint/markdown@8.0.2"
50
76
  },
51
77
  {
52
78
  "type": "library",
@@ -100,6 +126,32 @@
100
126
  ],
101
127
  "purl": "pkg:npm/eslint-plugin-import-x@4.16.2"
102
128
  },
129
+ {
130
+ "type": "library",
131
+ "name": "eslint-plugin-markdown-links",
132
+ "version": "0.9.0",
133
+ "bom-ref": "pkg:npm/eslint-plugin-markdown-links@0.9.0",
134
+ "scope": "required",
135
+ "licenses": [
136
+ {
137
+ "expression": "MIT"
138
+ }
139
+ ],
140
+ "purl": "pkg:npm/eslint-plugin-markdown-links@0.9.0"
141
+ },
142
+ {
143
+ "type": "library",
144
+ "name": "eslint-plugin-markdown-preferences",
145
+ "version": "0.41.1",
146
+ "bom-ref": "pkg:npm/eslint-plugin-markdown-preferences@0.41.1",
147
+ "scope": "required",
148
+ "licenses": [
149
+ {
150
+ "expression": "MIT"
151
+ }
152
+ ],
153
+ "purl": "pkg:npm/eslint-plugin-markdown-preferences@0.41.1"
154
+ },
103
155
  {
104
156
  "type": "library",
105
157
  "name": "eslint-plugin-no-barrel-files",
@@ -129,15 +181,15 @@
129
181
  {
130
182
  "type": "library",
131
183
  "name": "eslint-plugin-prettier",
132
- "version": "5.5.5",
133
- "bom-ref": "pkg:npm/eslint-plugin-prettier@5.5.5",
184
+ "version": "5.5.6",
185
+ "bom-ref": "pkg:npm/eslint-plugin-prettier@5.5.6",
134
186
  "scope": "required",
135
187
  "licenses": [
136
188
  {
137
189
  "expression": "MIT"
138
190
  }
139
191
  ],
140
- "purl": "pkg:npm/eslint-plugin-prettier@5.5.5"
192
+ "purl": "pkg:npm/eslint-plugin-prettier@5.5.6"
141
193
  },
142
194
  {
143
195
  "type": "library",
@@ -194,20 +246,27 @@
194
246
  ],
195
247
  "dependencies": [
196
248
  {
197
- "ref": "pkg:npm/@cspell/eslint-plugin@10.0.0"
249
+ "ref": "pkg:npm/@ben_12/eslint-simple-parser@0.1.0"
198
250
  },
199
251
  {
200
- "ref": "pkg:npm/@enormora/eslint-config-base-with-prettier@0.0.2",
252
+ "ref": "pkg:npm/@cspell/eslint-plugin@10.0.1"
253
+ },
254
+ {
255
+ "ref": "pkg:npm/@enormora/eslint-config-base-with-prettier@0.0.4",
201
256
  "dependsOn": [
202
- "pkg:npm/@cspell/eslint-plugin@10.0.0",
203
- "pkg:npm/@eslint-community/eslint-plugin-eslint-comments@4.7.1",
257
+ "pkg:npm/@ben_12/eslint-simple-parser@0.1.0",
258
+ "pkg:npm/@cspell/eslint-plugin@10.0.1",
259
+ "pkg:npm/@eslint-community/eslint-plugin-eslint-comments@4.7.2",
260
+ "pkg:npm/@eslint/markdown@8.0.2",
204
261
  "pkg:npm/@stylistic/eslint-plugin@5.10.0",
205
262
  "pkg:npm/eslint-plugin-array-func@5.1.1",
206
263
  "pkg:npm/eslint-plugin-destructuring@2.2.1",
207
264
  "pkg:npm/eslint-plugin-import-x@4.16.2",
265
+ "pkg:npm/eslint-plugin-markdown-links@0.9.0",
266
+ "pkg:npm/eslint-plugin-markdown-preferences@0.41.1",
208
267
  "pkg:npm/eslint-plugin-no-barrel-files@1.3.1",
209
268
  "pkg:npm/eslint-plugin-no-secrets@2.3.3",
210
- "pkg:npm/eslint-plugin-prettier@5.5.5",
269
+ "pkg:npm/eslint-plugin-prettier@5.5.6",
211
270
  "pkg:npm/eslint-plugin-promise@7.3.0",
212
271
  "pkg:npm/eslint-plugin-sonarjs@4.0.3",
213
272
  "pkg:npm/eslint-plugin-unicorn@64.0.0",
@@ -215,7 +274,10 @@
215
274
  ]
216
275
  },
217
276
  {
218
- "ref": "pkg:npm/@eslint-community/eslint-plugin-eslint-comments@4.7.1"
277
+ "ref": "pkg:npm/@eslint-community/eslint-plugin-eslint-comments@4.7.2"
278
+ },
279
+ {
280
+ "ref": "pkg:npm/@eslint/markdown@8.0.2"
219
281
  },
220
282
  {
221
283
  "ref": "pkg:npm/@stylistic/eslint-plugin@5.10.0"
@@ -229,6 +291,12 @@
229
291
  {
230
292
  "ref": "pkg:npm/eslint-plugin-import-x@4.16.2"
231
293
  },
294
+ {
295
+ "ref": "pkg:npm/eslint-plugin-markdown-links@0.9.0"
296
+ },
297
+ {
298
+ "ref": "pkg:npm/eslint-plugin-markdown-preferences@0.41.1"
299
+ },
232
300
  {
233
301
  "ref": "pkg:npm/eslint-plugin-no-barrel-files@1.3.1"
234
302
  },
@@ -236,7 +304,7 @@
236
304
  "ref": "pkg:npm/eslint-plugin-no-secrets@2.3.3"
237
305
  },
238
306
  {
239
- "ref": "pkg:npm/eslint-plugin-prettier@5.5.5"
307
+ "ref": "pkg:npm/eslint-plugin-prettier@5.5.6"
240
308
  },
241
309
  {
242
310
  "ref": "pkg:npm/eslint-plugin-promise@7.3.0"