@firefoxic/eslint-config 4.0.0 → 6.0.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.
Files changed (3) hide show
  1. package/lib/index.d.ts +6 -5
  2. package/lib/index.js +232 -196
  3. package/package.json +54 -59
package/lib/index.d.ts CHANGED
@@ -1,7 +1,8 @@
1
- declare module '@firefoxic/eslint-config' {
2
- import { Linter } from 'eslint';
1
+ declare module "@firefoxic/eslint-config" {
2
+ import { Linter } from "eslint"
3
+ import globals from "globals"
3
4
 
4
- export let globals: any;
5
- let firefoxicEslintConfig: Linter.Config;
6
- export default firefoxicEslintConfig;
5
+ export type GlobalsType = typeof globals
6
+ let firefoxicEslintConfig: Linter.Config
7
+ export default firefoxicEslintConfig
7
8
  }
package/lib/index.js CHANGED
@@ -1,12 +1,13 @@
1
+ import stylistic from "@stylistic/eslint-plugin"
1
2
  import eslintPluginPreferLet from "eslint-plugin-prefer-let"
2
- import js from "@eslint/js"
3
- import stylisticJs from "@stylistic/eslint-plugin-js"
3
+ import eslintPluginSimpleImportSort from "eslint-plugin-simple-import-sort"
4
+
5
+ import enoughIsEnough from "./enough-is-enough/index.js"
4
6
 
5
7
  export { default as globals } from "globals"
6
8
 
7
9
  /** @type {import('eslint').Linter.Config[]} */
8
10
  export default [
9
- js.configs.recommended,
10
11
  {
11
12
  rules: {
12
13
  "accessor-pairs": `error`,
@@ -15,47 +16,102 @@ export default [
15
16
  `as-needed`,
16
17
  ],
17
18
  "camelcase": `error`,
19
+ "constructor-super": `error`,
18
20
  "curly": [
19
21
  `error`,
20
- `multi-line`,
22
+ `multi-or-nest`,
21
23
  ],
22
24
  "eqeqeq": [
23
25
  `error`,
24
26
  `always`,
25
27
  ],
28
+ "for-direction": `error`,
26
29
  "func-style": [
27
30
  `error`,
28
31
  `declaration`,
29
32
  ],
33
+ "getter-return": `error`,
30
34
  "guard-for-in": `error`,
31
35
  "no-alert": `error`,
32
- "no-irregular-whitespace": `off`,
36
+ "no-async-promise-executor": `error`,
37
+ "no-case-declarations": `error`,
38
+ "no-class-assign": `error`,
39
+ "no-compare-neg-zero": `error`,
40
+ "no-cond-assign": `error`,
41
+ "no-const-assign": `error`,
42
+ "no-constant-binary-expression": `error`,
43
+ "no-constant-condition": `error`,
44
+ "no-control-regex": `error`,
45
+ "no-debugger": `error`,
46
+ "no-delete-var": `error`,
47
+ "no-dupe-args": `error`,
48
+ "no-dupe-class-members": `error`,
49
+ "no-dupe-else-if": `error`,
50
+ "no-dupe-keys": `error`,
51
+ "no-duplicate-case": `error`,
52
+ "no-empty": `error`,
53
+ "no-empty-character-class": `error`,
54
+ "no-empty-pattern": `error`,
55
+ "no-empty-static-block": `error`,
56
+ "no-ex-assign": `error`,
57
+ "no-extra-boolean-cast": `error`,
58
+ "no-fallthrough": `error`,
59
+ "no-func-assign": `error`,
60
+ "no-global-assign": `error`,
61
+ "no-import-assign": `error`,
62
+ "no-invalid-regexp": `error`,
33
63
  "no-lonely-if": `error`,
64
+ "no-loss-of-precision": `error`,
65
+ "no-misleading-character-class": `error`,
34
66
  "no-multi-assign": `error`,
35
- "no-proto": `error`,
36
67
  "no-nested-ternary": `error`,
68
+ "no-new-native-nonconstructor": `error`,
69
+ "no-nonoctal-decimal-escape": `error`,
70
+ "no-obj-calls": `error`,
71
+ "no-octal": `error`,
37
72
  "no-octal-escape": `error`,
73
+ "no-proto": `error`,
38
74
  "no-prototype-builtins": `error`,
75
+ "no-redeclare": `error`,
76
+ "no-regex-spaces": `error`,
39
77
  "no-return-assign": `error`,
78
+ "no-self-assign": `error`,
40
79
  "no-self-compare": `error`,
80
+ "no-setter-return": `error`,
41
81
  "no-shadow": [
42
82
  `error`,
43
83
  {
44
84
  hoist: `all`,
45
85
  },
46
86
  ],
87
+ "no-shadow-restricted-names": `error`,
88
+ "no-sparse-arrays": `error`,
47
89
  "no-template-curly-in-string": `error`,
90
+ "no-this-before-super": `error`,
91
+ "no-undef": `error`,
92
+ "no-unexpected-multiline": `error`,
48
93
  "no-unneeded-ternary": `error`,
94
+ "no-unreachable": `error`,
95
+ "no-unsafe-finally": `error`,
96
+ "no-unsafe-negation": `error`,
97
+ "no-unsafe-optional-chaining": `error`,
49
98
  "no-unused-expressions": `error`,
99
+ "no-unused-labels": `error`,
100
+ "no-unused-private-class-members": `error`,
101
+ "no-unused-vars": `error`,
50
102
  "no-use-before-define": [
51
103
  `error`,
52
104
  {
53
105
  functions: false,
54
106
  },
55
107
  ],
108
+ "no-useless-backreference": `error`,
109
+ "no-useless-catch": `error`,
56
110
  "no-useless-concat": `error`,
111
+ "no-useless-escape": `error`,
57
112
  "no-useless-return": `error`,
58
113
  "no-var": `error`,
114
+ "no-with": `error`,
59
115
  "object-shorthand": `error`,
60
116
  "one-var": [
61
117
  `error`,
@@ -65,25 +121,13 @@ export default [
65
121
  "prefer-object-has-own": `error`,
66
122
  "prefer-template": `error`,
67
123
  "radix": `error`,
68
- "sort-imports": [
69
- `error`,
70
- {
71
- ignoreCase: true,
72
- ignoreDeclarationSort: false,
73
- ignoreMemberSort: false,
74
- memberSyntaxSortOrder: [
75
- `single`,
76
- `multiple`,
77
- `all`,
78
- `none`,
79
- ],
80
- allowSeparatedGroups: true,
81
- },
82
- ],
124
+ "require-yield": `error`,
83
125
  "strict": [
84
126
  `error`,
85
127
  `global`,
86
128
  ],
129
+ "use-isnan": `error`,
130
+ "valid-typeof": `error`,
87
131
  },
88
132
  },
89
133
  {
@@ -96,300 +140,292 @@ export default [
96
140
  },
97
141
  {
98
142
  plugins: {
99
- "@stylistic/js": stylisticJs,
143
+ "simple-import-sort": eslintPluginSimpleImportSort,
100
144
  },
101
145
  rules: {
102
- "@stylistic/js/array-bracket-newline": [
103
- `error`,
104
- // `consistent`,
105
- { multiline: true },
106
- ],
107
- "@stylistic/js/array-bracket-spacing": [
108
- `error`,
109
- `never`,
110
- ],
111
- "@stylistic/js/array-element-newline": [
112
- `error`,
113
- `consistent`,
114
- ],
115
- "@stylistic/js/arrow-parens": [
116
- `error`,
117
- `always`,
118
- ],
119
- "@stylistic/js/arrow-spacing": [
146
+ "simple-import-sort/exports": `error`,
147
+ "simple-import-sort/imports": [
120
148
  `error`,
121
149
  {
122
- before: true,
123
- after: true,
150
+ groups: [
151
+ // 1.Node.js modules
152
+ [`^node:`],
153
+ // 2. Foreign modules
154
+ [`^@?\\w`],
155
+ // 3. Absolute imports (@/...)
156
+ [`^@/`],
157
+ // 4. Relative imports (up)
158
+ [
159
+ `^\\.\\.(?!/?$)`,
160
+ `^\\.\\./?$`,
161
+ ],
162
+ // 5. Relative imports (down)
163
+ [
164
+ `^\\./(?=.*/)(?!/?$)`,
165
+ `^\\.(?!/?$)`,
166
+ `^\\./?$`,
167
+ ],
168
+ // 6. Styles
169
+ [`^.+\\.s?css$`],
170
+ ],
124
171
  },
125
172
  ],
126
- "@stylistic/js/block-spacing": [
173
+ },
174
+ },
175
+ {
176
+ plugins: {
177
+ "@stylistic": stylistic,
178
+ },
179
+ rules: {
180
+ "@stylistic/array-bracket-newline": `error`,
181
+ "@stylistic/array-bracket-spacing": `error`,
182
+ "@stylistic/array-element-newline": [
127
183
  `error`,
128
- `always`,
184
+ {
185
+ consistent: true,
186
+ multiline: true,
187
+ },
129
188
  ],
130
- "@stylistic/js/brace-style": [
189
+ "@stylistic/arrow-parens": `error`,
190
+ "@stylistic/arrow-spacing": `error`,
191
+ "@stylistic/block-spacing": `error`,
192
+ "@stylistic/brace-style": [
131
193
  `error`,
132
- `1tbs`,
194
+ `stroustrup`,
133
195
  {
134
196
  allowSingleLine: true,
135
197
  },
136
198
  ],
137
- "@stylistic/js/comma-dangle": [
199
+ "@stylistic/comma-dangle": [
138
200
  `error`,
139
201
  `always-multiline`,
140
202
  ],
141
- "@stylistic/js/comma-spacing": [
203
+ "@stylistic/comma-spacing": `error`,
204
+ "@stylistic/comma-style": `error`,
205
+ "@stylistic/computed-property-spacing": `error`,
206
+ "@stylistic/curly-newline": [
142
207
  `error`,
143
208
  {
144
- before: false,
145
- after: true,
209
+ consistent: true,
210
+ multiline: true,
146
211
  },
147
212
  ],
148
- "@stylistic/js/comma-style": [
149
- `error`,
150
- `last`,
151
- ],
152
- "@stylistic/js/computed-property-spacing": [
153
- `error`,
154
- `never`,
155
- ],
156
- "@stylistic/js/dot-location": [
213
+ "@stylistic/dot-location": [
157
214
  `error`,
158
215
  `property`,
159
216
  ],
160
- "@stylistic/js/eol-last": [
161
- `error`,
162
- `always`,
163
- ],
164
- "@stylistic/js/function-call-argument-newline": [
217
+ "@stylistic/eol-last": `error`,
218
+ "@stylistic/function-call-argument-newline": [
165
219
  `error`,
166
220
  `consistent`,
167
221
  ],
168
- "@stylistic/js/function-call-spacing": [
169
- `error`,
170
- `never`,
171
- ],
172
- "@stylistic/js/function-paren-newline": [
222
+ "@stylistic/function-call-spacing": `error`,
223
+ "@stylistic/function-paren-newline": [
173
224
  `error`,
174
225
  `multiline-arguments`,
175
226
  ],
176
- "@stylistic/js/generator-star-spacing": [
227
+ "@stylistic/generator-star-spacing": [
177
228
  `error`,
178
- {
179
- before: true,
180
- after: false,
181
- },
229
+ `after`,
182
230
  ],
183
- "@stylistic/js/implicit-arrow-linebreak": [
184
- `error`,
185
- `beside`,
186
- ],
187
- "@stylistic/js/indent": [
231
+ "@stylistic/implicit-arrow-linebreak": `error`,
232
+ "@stylistic/indent": [
188
233
  `error`,
189
234
  `tab`,
190
235
  {
191
236
  SwitchCase: 1,
192
237
  },
193
238
  ],
194
- "@stylistic/js/key-spacing": [
195
- `error`,
196
- {
197
- beforeColon: false,
198
- afterColon: true,
199
- },
200
- ],
201
- "@stylistic/js/keyword-spacing": [
202
- `error`,
203
- {
204
- before: true,
205
- after: true,
206
- },
207
- ],
208
- "@stylistic/js/linebreak-style": [
239
+ "@stylistic/indent-binary-ops": [
209
240
  `error`,
210
- `unix`,
241
+ `tab`,
211
242
  ],
212
- "@stylistic/js/lines-around-comment": [
243
+ "@stylistic/key-spacing": `error`,
244
+ "@stylistic/keyword-spacing": `error`,
245
+ "@stylistic/linebreak-style": `error`,
246
+ "@stylistic/lines-around-comment": [
213
247
  `error`,
214
248
  {
215
249
  beforeBlockComment: true,
216
250
  allowBlockStart: true,
217
251
  },
218
252
  ],
219
- "@stylistic/js/lines-between-class-members": [
220
- `error`,
221
- `always`,
222
- ],
223
- "@stylistic/js/max-len": [
253
+ "@stylistic/lines-between-class-members": `error`,
254
+ "@stylistic/member-delimiter-style": [
224
255
  `error`,
225
- { code: Infinity },
256
+ {
257
+ multiline: {
258
+ delimiter: `comma`,
259
+ requireLast: true,
260
+ },
261
+ singleline: {
262
+ delimiter: `comma`,
263
+ requireLast: false,
264
+ },
265
+ },
226
266
  ],
227
- "@stylistic/js/multiline-comment-style": [
267
+ "@stylistic/multiline-comment-style": [
228
268
  `error`,
229
269
  `separate-lines`,
230
270
  ],
231
- "@stylistic/js/multiline-ternary": [
271
+ "@stylistic/multiline-ternary": [
232
272
  `error`,
233
273
  `always-multiline`,
234
274
  ],
235
- "@stylistic/js/new-parens": [
236
- `error`,
237
- `never`,
238
- ],
239
- "@stylistic/js/no-extra-semi": [`error`],
240
- "@stylistic/js/no-floating-decimal": [`error`],
241
- "@stylistic/js/no-mixed-operators": [
242
- `error`,
243
- { allowSamePrecedence: true },
244
- ],
245
- "@stylistic/js/no-mixed-spaces-and-tabs": [
246
- `error`,
247
- // `smart-tabs`,
248
- ],
249
- "@stylistic/js/no-multi-spaces": [
250
- `error`,
251
- {
252
- ignoreEOLComments: true,
253
- },
254
- ],
255
- "@stylistic/js/no-multiple-empty-lines": [
275
+ "@stylistic/new-parens": `error`,
276
+ "@stylistic/no-confusing-arrow": `off`,
277
+ "@stylistic/no-extra-semi": `error`,
278
+ "@stylistic/no-floating-decimal": `error`,
279
+ "@stylistic/no-mixed-operators": `error`,
280
+ "@stylistic/no-mixed-spaces-and-tabs": `error`,
281
+ "@stylistic/no-multi-spaces": `error`,
282
+ "@stylistic/no-multiple-empty-lines": [
256
283
  `error`,
257
284
  {
258
285
  max: 1,
286
+ maxBOF: 0,
287
+ maxEOF: 0,
259
288
  },
260
289
  ],
261
- '@stylistic/js/no-trailing-spaces': [`error`],
262
- "@stylistic/js/no-whitespace-before-property": [`error`],
263
- "@stylistic/js/nonblock-statement-body-position": [
264
- `error`,
265
- `beside`,
266
- ],
267
- "@stylistic/js/object-curly-newline": [
290
+ "@stylistic/no-trailing-spaces": `error`,
291
+ "@stylistic/no-whitespace-before-property": `error`,
292
+ "@stylistic/nonblock-statement-body-position": `error`,
293
+ "@stylistic/object-curly-newline": [
268
294
  `error`,
269
295
  {
270
296
  consistent: true,
271
297
  multiline: true,
272
298
  },
273
299
  ],
274
- "@stylistic/js/object-curly-spacing": [
300
+ "@stylistic/object-curly-spacing": [
275
301
  `error`,
276
302
  `always`,
277
303
  ],
278
- "@stylistic/js/object-property-newline": [
304
+ "@stylistic/object-property-newline": [
279
305
  `error`,
280
306
  {
281
- allowMultiplePropertiesPerLine: true,
307
+ allowAllPropertiesOnSameLine: true,
282
308
  },
283
309
  ],
284
- "@stylistic/js/operator-linebreak": [
310
+ "@stylistic/one-var-declaration-per-line": `error`,
311
+ "@stylistic/operator-linebreak": [
285
312
  `error`,
286
313
  `before`,
314
+ {
315
+ overrides: {
316
+ "=": `none`,
317
+ },
318
+ },
287
319
  ],
288
- "@stylistic/js/padded-blocks": [
320
+ "@stylistic/padded-blocks": [
289
321
  `error`,
290
322
  `never`,
291
323
  ],
292
- "@stylistic/js/padding-line-between-statements": [
324
+ "@stylistic/padding-line-between-statements": [
293
325
  `error`,
294
326
  {
295
327
  blankLine: `always`,
296
328
  prev: `*`,
297
- next: [`function`, `const`, `let`, `var`, `export`, `return`],
329
+ next: [
330
+ `class`,
331
+ `export`,
332
+ `function`,
333
+ `import`,
334
+ ],
298
335
  },
299
336
  {
300
337
  blankLine: `always`,
301
- prev: [`import`, `const`, `let`, `var`, `export`, `function`],
338
+ prev: [
339
+ `class`,
340
+ `export`,
341
+ `function`,
342
+ `import`,
343
+ ],
302
344
  next: `*`,
303
345
  },
304
346
  {
305
347
  blankLine: `any`,
306
- prev: [`const`, `let`, `var`],
307
- next: [`const`, `let`, `var`],
348
+ prev: [
349
+ `const`,
350
+ `let`,
351
+ `var`,
352
+ ],
353
+ next: [
354
+ `const`,
355
+ `let`,
356
+ `var`,
357
+ ],
358
+ },
359
+ {
360
+ blankLine: `any`,
361
+ prev: `export`,
362
+ next: `export`,
308
363
  },
309
364
  {
310
365
  blankLine: `any`,
311
366
  prev: `import`,
312
367
  next: `import`,
313
368
  },
369
+ {
370
+ blankLine: `any`,
371
+ prev: `*`,
372
+ next: `return`,
373
+ },
314
374
  ],
315
- "@stylistic/js/quote-props": [
375
+ "@stylistic/quote-props": [
316
376
  `error`,
317
377
  `consistent-as-needed`,
318
378
  {
319
379
  keywords: true,
320
380
  },
321
381
  ],
322
- "@stylistic/js/quotes": [
382
+ "@stylistic/quotes": [
323
383
  `error`,
324
384
  `backtick`,
325
385
  ],
326
- "@stylistic/js/rest-spread-spacing": [
327
- `error`,
328
- `never`,
329
- ],
330
- "@stylistic/js/semi": [
386
+ "@stylistic/rest-spread-spacing": `error`,
387
+ "@stylistic/semi": [
331
388
  `error`,
332
389
  `never`,
333
390
  {
334
391
  beforeStatementContinuationChars: `always`,
335
392
  },
336
393
  ],
337
- "@stylistic/js/semi-spacing": [
394
+ "@stylistic/semi-spacing": [
338
395
  `error`,
339
396
  {
340
397
  before: false,
341
398
  after: true,
342
399
  },
343
400
  ],
344
- "@stylistic/js/semi-style": [
401
+ "@stylistic/semi-style": [
345
402
  `error`,
346
403
  `first`,
347
404
  ],
348
- "@stylistic/js/space-before-blocks": [
349
- `error`,
350
- `always`,
351
- ],
352
- "@stylistic/js/space-before-function-paren": [
353
- `error`,
354
- `always`,
355
- ],
356
- "@stylistic/js/space-in-parens": [
357
- `error`,
358
- `never`,
359
- ],
360
- "@stylistic/js/space-infix-ops": [
361
- `error`,
362
- { int32Hint: false },
363
- ],
364
- "@stylistic/js/space-unary-ops": [`error`],
365
- "@stylistic/js/spaced-comment": [
366
- `error`,
367
- `always`,
368
- ],
369
- "@stylistic/js/switch-colon-spacing": [
370
- `error`,
371
- {
372
- before: false,
373
- after: true,
374
- },
375
- ],
376
- "@stylistic/js/template-curly-spacing": [
377
- `error`,
378
- `never`,
379
- ],
380
- "@stylistic/js/template-tag-spacing": [
381
- `error`,
382
- `never`,
383
- ],
384
- "@stylistic/js/wrap-iife": [
385
- `error`,
386
- `outside`,
387
- ],
388
- "@stylistic/js/wrap-regex": [`error`],
389
- "@stylistic/js/yield-star-spacing": [
390
- `error`,
391
- `before`,
392
- ],
405
+ "@stylistic/space-before-blocks": `error`,
406
+ "@stylistic/space-before-function-paren": `error`,
407
+ "@stylistic/space-in-parens": `error`,
408
+ "@stylistic/space-infix-ops": `error`,
409
+ "@stylistic/space-unary-ops": `error`,
410
+ "@stylistic/spaced-comment": `error`,
411
+ "@stylistic/switch-colon-spacing": `error`,
412
+ "@stylistic/template-curly-spacing": `error`,
413
+ "@stylistic/template-tag-spacing": `error`,
414
+ "@stylistic/type-annotation-spacing": `error`,
415
+ "@stylistic/type-generic-spacing": `error`,
416
+ "@stylistic/type-named-tuple-spacing": `error`,
417
+ "@stylistic/wrap-iife": `error`,
418
+ "@stylistic/wrap-regex": `error`,
419
+ "@stylistic/yield-star-spacing": `error`,
420
+ },
421
+ },
422
+ {
423
+ plugins: {
424
+ "enough-is-enough": enoughIsEnough,
425
+ },
426
+ rules: {
427
+ "enough-is-enough/no-multiline-named-imports": `error`,
428
+ "enough-is-enough/no-single-quotes-in-imports-and-object-keys": `error`,
393
429
  },
394
430
  },
395
431
  ]
package/package.json CHANGED
@@ -1,60 +1,55 @@
1
1
  {
2
- "name": "@firefoxic/eslint-config",
3
- "description": "Shared config for eslint by firefoxic.",
4
- "version": "4.0.0",
5
- "license": "MIT",
6
- "author": {
7
- "name": "Sergey Artemov",
8
- "email": "firefoxic.dev@gmail.com"
9
- },
10
- "homepage": "https://github.com/firefoxic/eslint-config#readme",
11
- "bugs": {
12
- "url": "https://github.com/firefoxic/eslint-config/issues"
13
- },
14
- "repository": {
15
- "type": "git",
16
- "url": "git+https://github.com/firefoxic/eslint-config.git"
17
- },
18
- "type": "module",
19
- "engines": {
20
- "node": "^20.12 || >=22.11"
21
- },
22
- "exports": {
23
- "types": "./lib/index.d.ts",
24
- "default": "./lib/index.js"
25
- },
26
- "files": [
27
- "./lib/index.d.ts",
28
- "./lib/index.js"
29
- ],
30
- "peerDependencies": {
31
- "eslint": "^9.13.0"
32
- },
33
- "dependencies": {
34
- "@eslint/js": "^9.13.0",
35
- "@stylistic/eslint-plugin-js": "^2.9.0",
36
- "eslint-plugin-prefer-let": "^4.0.0",
37
- "globals": "^15.11.0"
38
- },
39
- "devDependencies": {
40
- "@firefoxic/update-changelog": "^0.2.1",
41
- "eslint": "^9.13.0"
42
- },
43
- "keywords": [
44
- "config",
45
- "eslint",
46
- "javascript",
47
- "js",
48
- "lint",
49
- "linter",
50
- "linting"
51
- ],
52
- "scripts": {
53
- "lint": "eslint",
54
- "pretest": "pnpm lint",
55
- "test": "node --test",
56
- "preversion": "pnpm test",
57
- "version": "update-changelog",
58
- "postversion": "pnpm publish --provenance --access public --no-git-checks"
59
- }
60
- }
2
+ "name": "@firefoxic/eslint-config",
3
+ "description": "Shared config for eslint by firefoxic.",
4
+ "version": "6.0.0",
5
+ "license": "MIT",
6
+ "author": {
7
+ "name": "Sergey Artemov",
8
+ "email": "firefoxic.dev@gmail.com"
9
+ },
10
+ "homepage": "https://github.com/firefoxic/eslint-config#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/firefoxic/eslint-config/issues"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/firefoxic/eslint-config.git"
17
+ },
18
+ "type": "module",
19
+ "engines": {
20
+ "node": ">=20.19"
21
+ },
22
+ "exports": {
23
+ "default": "./lib/index.js",
24
+ "types": "./lib/index.d.ts"
25
+ },
26
+ "files": [
27
+ "./lib/index.d.ts",
28
+ "./lib/index.js"
29
+ ],
30
+ "peerDependencies": {
31
+ "eslint": "^9.39.2"
32
+ },
33
+ "dependencies": {
34
+ "@stylistic/eslint-plugin": "^5.7.0",
35
+ "eslint-plugin-prefer-let": "^4.0.1",
36
+ "eslint-plugin-simple-import-sort": "^12.1.1",
37
+ "globals": "^17.0.0"
38
+ },
39
+ "scripts": {
40
+ "help": "make help",
41
+ "eslint": "eslint"
42
+ },
43
+ "devDependencies": {
44
+ "eslint": "^9.39.2"
45
+ },
46
+ "keywords": [
47
+ "config",
48
+ "eslint",
49
+ "javascript",
50
+ "js",
51
+ "lint",
52
+ "linter",
53
+ "linting"
54
+ ]
55
+ }