@enormora/eslint-config-typescript 0.0.42 → 0.0.44

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
@@ -1,11 +1,14 @@
1
1
  {
2
2
  "author": "Mathias Schreck <schreck.mathias@gmail.com>",
3
3
  "contributors": [
4
- "Christian Rackerseder <github@echooff.de>"
4
+ {
5
+ "email": "github@echooff.de",
6
+ "name": "Christian Rackerseder"
7
+ }
5
8
  ],
6
9
  "dependencies": {
7
- "@typescript-eslint/eslint-plugin": "8.60.1",
8
- "@typescript-eslint/parser": "8.60.1",
10
+ "@typescript-eslint/eslint-plugin": "8.61.0",
11
+ "@typescript-eslint/parser": "8.61.0",
9
12
  "eslint-import-resolver-typescript": "4.4.5",
10
13
  "eslint-plugin-functional": "10.0.0",
11
14
  "eslint-plugin-import-x": "4.16.2",
@@ -20,12 +23,12 @@
20
23
  "license": "MIT",
21
24
  "name": "@enormora/eslint-config-typescript",
22
25
  "peerDependencies": {
23
- "@enormora/eslint-config-base": "0.0.36"
26
+ "@enormora/eslint-config-base": "0.0.38"
24
27
  },
25
28
  "repository": {
26
29
  "type": "git",
27
30
  "url": "git://github.com/enormora/eslint-config.git"
28
31
  },
29
32
  "type": "module",
30
- "version": "0.0.42"
33
+ "version": "0.0.44"
31
34
  }
@@ -4,22 +4,19 @@ import { createTypeScriptImportResolver } from 'eslint-import-resolver-typescrip
4
4
  import functionalPlugin from 'eslint-plugin-functional';
5
5
  import { createNodeResolver } from 'eslint-plugin-import-x';
6
6
  import perfectionistPlugin from 'eslint-plugin-perfectionist';
7
- import { javascriptExtensions, typescriptExtensions } from '@enormora/eslint-config-base/constants.js';
8
- import { createRestrictedSyntaxPlugin } from '@enormora/eslint-config-base/rule-sets/restricted-syntax.js';
9
- import { baseSharedConfig } from '@enormora/eslint-config-base/presets/base/base-shared.js';
10
-
7
+ import { javascriptExtensions, typescriptExtensions } from "@enormora/eslint-config-base/constants.js";
8
+ import { createRestrictedSyntaxPlugin } from "@enormora/eslint-config-base/rule-sets/restricted-syntax.js";
9
+ import { baseSharedConfig } from "@enormora/eslint-config-base/presets/base/base-shared.js";
11
10
  export const noTsEnumDeclarationRestriction = {
12
11
  selector: 'TSEnumDeclaration',
13
12
  message: 'Use a string union type instead'
14
13
  };
15
-
16
- const namedReferenceTypePrefix = String.raw`(?:(?:keyof)?typeof)?`;
14
+ const namedReferenceTypePrefix = String.raw `(?:(?:keyof)?typeof)?`;
17
15
  const mutableContainerLookahead = String
18
- .raw`(?!(?:Array|ReadonlyArray|Map|ReadonlyMap|Set|ReadonlySet|Record|Readonly)\b)`;
19
- const namedReferenceBody = String.raw`[A-Z][\w$]*(?:\.[A-Z][\w$]*)*(?:<.*>)?`;
16
+ .raw `(?!(?:Array|ReadonlyArray|Map|ReadonlyMap|Set|ReadonlySet|Record|Readonly)\b)`;
17
+ const namedReferenceBody = String.raw `[A-Z][\w$]*(?:\.[A-Z][\w$]*)*(?:<.*>)?`;
20
18
  const namedReferenceAtom = `${namedReferenceTypePrefix}${mutableContainerLookahead}${namedReferenceBody}`;
21
- const namedReferenceIgnorePattern = String.raw`^${namedReferenceAtom}(?:[|&]${namedReferenceAtom})*$`;
22
-
19
+ const namedReferenceIgnorePattern = String.raw `^${namedReferenceAtom}(?:[|&]${namedReferenceAtom})*$`;
23
20
  const functionLikeNodes = [
24
21
  'FunctionDeclaration',
25
22
  'FunctionExpression',
@@ -30,43 +27,46 @@ const functionLikeNodes = [
30
27
  'TSConstructorType'
31
28
  ]
32
29
  .join(', ');
33
-
34
30
  const noInlineSignatureTypeLiteralSelector = [
35
31
  `:matches(${functionLikeNodes}) > .params TSTypeAnnotation > TSTypeLiteral`,
36
32
  `:matches(${functionLikeNodes}) > TSTypeAnnotation.returnType > TSTypeLiteral`
37
33
  ]
38
34
  .join(', ');
39
-
40
35
  export const noInlineSignatureTypeLiteralRestriction = {
41
36
  selector: noInlineSignatureTypeLiteralSelector,
42
- message:
43
- 'Inline object type literals are not allowed in function parameters or return types — extract a named type.'
37
+ message: 'Inline object type literals are not allowed in function parameters or return types — extract a named type.'
38
+ };
39
+ const noPublicClassPropertySelector = [
40
+ 'PropertyDefinition[accessibility="public"]',
41
+ 'AccessorProperty[accessibility="public"]',
42
+ 'MethodDefinition[kind="get"][accessibility="public"]',
43
+ 'MethodDefinition[kind="set"][accessibility="public"]'
44
+ ]
45
+ .join(', ');
46
+ export const noPublicClassPropertyRestriction = {
47
+ selector: noPublicClassPropertySelector,
48
+ message: 'Class properties and accessors must be private or protected — only methods may be public.'
44
49
  };
45
-
46
50
  const restrictedSyntaxTypescriptPlugin = createRestrictedSyntaxPlugin([
47
51
  'no-ts-enum-declaration',
48
- 'no-inline-signature-type-literal'
52
+ 'no-inline-signature-type-literal',
53
+ 'no-public-class-property'
49
54
  ]);
50
-
51
55
  function asArray(value) {
52
56
  if (Array.isArray(value)) {
53
57
  return value;
54
58
  }
55
-
56
- return [ value ];
59
+ return [value];
57
60
  }
58
-
59
61
  function configureWrappedCoreRule(name, optionsOverrides) {
60
62
  const coreRuleConfig = asArray(baseSharedConfig.rules[name]);
61
- const [ coreRuleSeverity, ...coreRuleOptions ] = coreRuleConfig;
63
+ const [coreRuleSeverity, ...coreRuleOptions] = coreRuleConfig;
62
64
  const options = optionsOverrides === undefined ? coreRuleOptions : asArray(optionsOverrides);
63
-
64
65
  return {
65
66
  [name]: 'off',
66
- [`@typescript-eslint/${name}`]: [ coreRuleSeverity, ...options ]
67
+ [`@typescript-eslint/${name}`]: [coreRuleSeverity, ...options]
67
68
  };
68
69
  }
69
-
70
70
  export const typescriptConfig = {
71
71
  languageOptions: {
72
72
  parser: typescriptParser,
@@ -86,7 +86,7 @@ export const typescriptConfig = {
86
86
  },
87
87
  'import-x/resolver-next': [
88
88
  createNodeResolver({
89
- extensions: [ ...javascriptExtensions, ...typescriptExtensions ]
89
+ extensions: [...javascriptExtensions, ...typescriptExtensions]
90
90
  }),
91
91
  createTypeScriptImportResolver()
92
92
  ],
@@ -117,12 +117,12 @@ export const typescriptConfig = {
117
117
  'restricted-syntax-typescript': restrictedSyntaxTypescriptPlugin
118
118
  },
119
119
  rules: {
120
- 'restricted-syntax-typescript/no-ts-enum-declaration': [ 'error', noTsEnumDeclarationRestriction ],
120
+ 'restricted-syntax-typescript/no-ts-enum-declaration': ['error', noTsEnumDeclarationRestriction],
121
121
  'restricted-syntax-typescript/no-inline-signature-type-literal': [
122
122
  'error',
123
123
  noInlineSignatureTypeLiteralRestriction
124
124
  ],
125
-
125
+ 'restricted-syntax-typescript/no-public-class-property': ['error', noPublicClassPropertyRestriction],
126
126
  '@typescript-eslint/no-require-imports': 'error',
127
127
  '@typescript-eslint/adjacent-overload-signatures': 'error',
128
128
  '@typescript-eslint/array-type': [
@@ -132,7 +132,7 @@ export const typescriptConfig = {
132
132
  }
133
133
  ],
134
134
  '@typescript-eslint/await-thenable': 'error',
135
- '@typescript-eslint/no-empty-object-type': [ 'error', { allowInterfaces: 'never', allowObjectTypes: 'never' } ],
135
+ '@typescript-eslint/no-empty-object-type': ['error', { allowInterfaces: 'never', allowObjectTypes: 'never' }],
136
136
  '@typescript-eslint/no-unsafe-function-type': 'error',
137
137
  '@typescript-eslint/no-wrapper-object-types': 'error',
138
138
  '@typescript-eslint/no-restricted-types': [
@@ -140,13 +140,11 @@ export const typescriptConfig = {
140
140
  {
141
141
  types: {
142
142
  'Record<never, never>': {
143
- message:
144
- 'The `object` type is hard to use. Use `Record<PropertyKey, never>` instead. See: https://github.com/typescript-eslint/typescript-eslint/pull/848',
143
+ message: 'The `object` type is hard to use. Use `Record<PropertyKey, never>` instead. See: https://github.com/typescript-eslint/typescript-eslint/pull/848',
145
144
  fixWith: 'Record<PropertyKey, never>'
146
145
  },
147
146
  object: {
148
- message:
149
- 'The `object` type is hard to use. Use `Record<string, unknown>` instead. See: https://github.com/typescript-eslint/typescript-eslint/pull/848',
147
+ message: 'The `object` type is hard to use. Use `Record<string, unknown>` instead. See: https://github.com/typescript-eslint/typescript-eslint/pull/848',
150
148
  fixWith: 'Record<string, unknown>'
151
149
  },
152
150
  Omit: {
@@ -160,17 +158,17 @@ export const typescriptConfig = {
160
158
  'error',
161
159
  {
162
160
  selector: 'parameter',
163
- format: [ 'camelCase' ],
161
+ format: ['camelCase'],
164
162
  leadingUnderscore: 'allow',
165
163
  trailingUnderscore: 'forbid'
166
164
  },
167
165
  {
168
166
  selector: 'typeLike',
169
- format: [ 'PascalCase' ]
167
+ format: ['PascalCase']
170
168
  },
171
169
  {
172
170
  selector: 'interface',
173
- format: [ 'PascalCase' ],
171
+ format: ['PascalCase'],
174
172
  custom: {
175
173
  regex: '^I[A-Z]',
176
174
  match: false
@@ -195,10 +193,10 @@ export const typescriptConfig = {
195
193
  // misfires on intentional tagged-union returns (e.g. `Value | Sentinel`)
196
194
  // even when expressed as a single named alias.
197
195
  'sonarjs/function-return-type': 'off',
198
- ...configureWrappedCoreRule('max-params'),
196
+ ...configureWrappedCoreRule('max-params', undefined),
199
197
  '@typescript-eslint/member-ordering': 'error',
200
- ...configureWrappedCoreRule('no-array-constructor'),
201
- ...configureWrappedCoreRule('no-empty-function'),
198
+ ...configureWrappedCoreRule('no-array-constructor', undefined),
199
+ ...configureWrappedCoreRule('no-empty-function', undefined),
202
200
  '@typescript-eslint/no-explicit-any': 'error',
203
201
  '@typescript-eslint/no-extraneous-class': 'error',
204
202
  '@typescript-eslint/no-for-in-array': 'error',
@@ -211,7 +209,6 @@ export const typescriptConfig = {
211
209
  checksVoidReturn: true
212
210
  }
213
211
  ],
214
-
215
212
  '@typescript-eslint/no-this-alias': [
216
213
  'error',
217
214
  {
@@ -223,11 +220,11 @@ export const typescriptConfig = {
223
220
  '@typescript-eslint/no-unnecessary-type-arguments': 'error',
224
221
  '@typescript-eslint/no-unnecessary-type-assertion': 'error',
225
222
  '@typescript-eslint/no-unused-private-class-members': 'error',
226
- ...configureWrappedCoreRule('no-unused-vars'),
227
- ...configureWrappedCoreRule('no-useless-constructor'),
223
+ ...configureWrappedCoreRule('no-unused-vars', undefined),
224
+ ...configureWrappedCoreRule('no-useless-constructor', undefined),
228
225
  '@typescript-eslint/no-useless-constructor': 'error',
229
226
  '@typescript-eslint/no-useless-default-assignment': 'error',
230
- ...configureWrappedCoreRule('prefer-destructuring'),
227
+ ...configureWrappedCoreRule('prefer-destructuring', undefined),
231
228
  '@typescript-eslint/prefer-for-of': 'error',
232
229
  '@typescript-eslint/prefer-function-type': 'error',
233
230
  '@typescript-eslint/prefer-includes': 'error',
@@ -268,23 +265,23 @@ export const typescriptConfig = {
268
265
  '@typescript-eslint/strict-void-return': 'error',
269
266
  '@typescript-eslint/only-throw-error': 'error',
270
267
  '@typescript-eslint/prefer-optional-chain': 'error',
271
- '@typescript-eslint/prefer-nullish-coalescing': [ 'error', { ignoreIfStatements: true } ],
272
- '@typescript-eslint/class-literal-property-style': [ 'error', 'fields' ],
273
- '@typescript-eslint/consistent-type-definitions': [ 'error', 'type' ],
274
- ...configureWrappedCoreRule('default-param-last'),
275
- ...configureWrappedCoreRule('dot-notation'),
276
- '@typescript-eslint/explicit-member-accessibility': 'off',
268
+ '@typescript-eslint/prefer-nullish-coalescing': ['error', { ignoreIfStatements: true }],
269
+ '@typescript-eslint/class-literal-property-style': ['error', 'fields'],
270
+ '@typescript-eslint/consistent-type-definitions': ['error', 'type'],
271
+ ...configureWrappedCoreRule('default-param-last', undefined),
272
+ ...configureWrappedCoreRule('dot-notation', undefined),
273
+ '@typescript-eslint/explicit-member-accessibility': ['error', { accessibility: 'explicit' }],
277
274
  '@typescript-eslint/explicit-module-boundary-types': 'off',
278
275
  '@typescript-eslint/init-declarations': 'off',
279
- '@typescript-eslint/method-signature-style': [ 'error', 'property' ],
276
+ '@typescript-eslint/method-signature-style': ['error', 'property'],
280
277
  '@typescript-eslint/no-base-to-string': 'error',
281
- ...configureWrappedCoreRule('no-dupe-class-members'),
282
- '@typescript-eslint/no-dynamic-delete': [ 'error' ],
283
- '@typescript-eslint/no-extra-non-null-assertion': [ 'error' ],
284
- '@typescript-eslint/no-floating-promises': [ 'error' ],
285
- '@typescript-eslint/no-implied-eval': [ 'error' ],
286
- '@typescript-eslint/no-invalid-this': [ 'error' ],
287
- '@typescript-eslint/no-invalid-void-type': [ 'error' ],
278
+ ...configureWrappedCoreRule('no-dupe-class-members', undefined),
279
+ '@typescript-eslint/no-dynamic-delete': ['error'],
280
+ '@typescript-eslint/no-extra-non-null-assertion': ['error'],
281
+ '@typescript-eslint/no-floating-promises': ['error'],
282
+ '@typescript-eslint/no-implied-eval': ['error'],
283
+ '@typescript-eslint/no-invalid-this': ['error'],
284
+ '@typescript-eslint/no-invalid-void-type': ['error'],
288
285
  ...configureWrappedCoreRule('no-magic-numbers', {
289
286
  ignoreEnums: false,
290
287
  ignoreNumericLiteralTypes: true,
@@ -295,22 +292,22 @@ export const typescriptConfig = {
295
292
  detectObjects: false,
296
293
  enforceConst: false,
297
294
  ignoreClassFieldInitialValues: false,
298
- ignore: [ -1, 0, 1 ]
295
+ ignore: [-1, 0, 1]
299
296
  }),
300
- '@typescript-eslint/no-namespace': [ 'error' ],
301
- '@typescript-eslint/no-non-null-asserted-optional-chain': [ 'error' ],
302
- '@typescript-eslint/no-non-null-assertion': [ 'error' ],
303
- '@typescript-eslint/no-unnecessary-boolean-literal-compare': [ 'error' ],
304
- '@typescript-eslint/no-unnecessary-condition': [ 'error' ],
305
- '@typescript-eslint/no-unsafe-assignment': [ 'error' ],
306
- '@typescript-eslint/no-unsafe-call': [ 'error' ],
307
- '@typescript-eslint/no-unsafe-member-access': [ 'error' ],
308
- '@typescript-eslint/no-unsafe-return': [ 'error' ],
309
- ...configureWrappedCoreRule('no-use-before-define'),
310
- '@typescript-eslint/prefer-as-const': [ 'error' ],
297
+ '@typescript-eslint/no-namespace': ['error'],
298
+ '@typescript-eslint/no-non-null-asserted-optional-chain': ['error'],
299
+ '@typescript-eslint/no-non-null-assertion': ['error'],
300
+ '@typescript-eslint/no-unnecessary-boolean-literal-compare': ['error'],
301
+ '@typescript-eslint/no-unnecessary-condition': ['error'],
302
+ '@typescript-eslint/no-unsafe-assignment': ['error'],
303
+ '@typescript-eslint/no-unsafe-call': ['error'],
304
+ '@typescript-eslint/no-unsafe-member-access': ['error'],
305
+ '@typescript-eslint/no-unsafe-return': ['error'],
306
+ ...configureWrappedCoreRule('no-use-before-define', undefined),
307
+ '@typescript-eslint/prefer-as-const': ['error'],
311
308
  // disabled because we use functional/prefer-immutable-types.md
312
- '@typescript-eslint/prefer-readonly-parameter-types': [ 'off' ],
313
- '@typescript-eslint/prefer-reduce-type-parameter': [ 'error' ],
309
+ '@typescript-eslint/prefer-readonly-parameter-types': ['off'],
310
+ '@typescript-eslint/prefer-reduce-type-parameter': ['error'],
314
311
  '@typescript-eslint/ban-ts-comment': [
315
312
  'error',
316
313
  {
@@ -321,21 +318,21 @@ export const typescriptConfig = {
321
318
  minimumDescriptionLength: 10
322
319
  }
323
320
  ],
324
- '@typescript-eslint/restrict-template-expressions': [ 'off' ],
325
- '@typescript-eslint/return-await': [ 'off' ],
326
- '@typescript-eslint/switch-exhaustiveness-check': [ 'error' ],
327
- '@typescript-eslint/unbound-method': [ 'off' ],
328
- '@typescript-eslint/ban-tslint-comment': [ 'off' ],
329
- '@typescript-eslint/no-confusing-non-null-assertion': [ 'error' ],
330
- '@typescript-eslint/prefer-enum-initializers': [ 'off' ],
331
- '@typescript-eslint/prefer-literal-enum-member': [ 'off' ],
332
- ...configureWrappedCoreRule('no-redeclare'),
333
- ...configureWrappedCoreRule('no-shadow'),
321
+ '@typescript-eslint/restrict-template-expressions': ['off'],
322
+ '@typescript-eslint/return-await': ['off'],
323
+ '@typescript-eslint/switch-exhaustiveness-check': ['error'],
324
+ '@typescript-eslint/unbound-method': ['off'],
325
+ '@typescript-eslint/ban-tslint-comment': ['off'],
326
+ '@typescript-eslint/no-confusing-non-null-assertion': ['error'],
327
+ '@typescript-eslint/prefer-enum-initializers': ['off'],
328
+ '@typescript-eslint/prefer-literal-enum-member': ['off'],
329
+ ...configureWrappedCoreRule('no-redeclare', undefined),
330
+ ...configureWrappedCoreRule('no-shadow', undefined),
334
331
  '@typescript-eslint/consistent-type-imports': [
335
332
  'error',
336
333
  { prefer: 'type-imports', fixStyle: 'inline-type-imports', disallowTypeAnnotations: true }
337
334
  ],
338
- '@typescript-eslint/consistent-indexed-object-style': [ 'error', 'record' ],
335
+ '@typescript-eslint/consistent-indexed-object-style': ['error', 'record'],
339
336
  '@typescript-eslint/no-loop-func': 'off',
340
337
  '@typescript-eslint/no-unnecessary-type-constraint': 'error',
341
338
  '@typescript-eslint/no-confusing-void-expression': [
@@ -347,16 +344,16 @@ export const typescriptConfig = {
347
344
  ],
348
345
  '@typescript-eslint/non-nullable-type-assertion-style': 'off',
349
346
  '@typescript-eslint/no-unsafe-argument': 'error',
350
- '@typescript-eslint/prefer-return-this-type': 'off',
347
+ '@typescript-eslint/prefer-return-this-type': 'error',
351
348
  '@typescript-eslint/no-meaningless-void-operator': 'error',
352
349
  '@typescript-eslint/no-restricted-imports': 'error',
353
350
  '@typescript-eslint/no-non-null-asserted-nullish-coalescing': 'error',
354
351
  '@typescript-eslint/consistent-type-exports': 'error',
355
352
  '@typescript-eslint/no-redundant-type-constituents': 'error',
356
353
  '@typescript-eslint/no-useless-empty-export': 'error',
357
- '@typescript-eslint/consistent-generic-constructors': [ 'error', 'constructor' ],
354
+ '@typescript-eslint/consistent-generic-constructors': ['error', 'constructor'],
358
355
  '@typescript-eslint/no-duplicate-enum-values': 'error',
359
- '@typescript-eslint/parameter-properties': 'off',
356
+ '@typescript-eslint/parameter-properties': ['error', { prefer: 'class-property' }],
360
357
  '@typescript-eslint/no-unsafe-declaration-merging': 'error',
361
358
  '@typescript-eslint/no-mixed-enums': 'error',
362
359
  '@typescript-eslint/no-import-type-side-effects': 'error',
@@ -366,15 +363,14 @@ export const typescriptConfig = {
366
363
  '@typescript-eslint/no-array-delete': 'error',
367
364
  '@typescript-eslint/no-unnecessary-template-expression': 'error',
368
365
  '@typescript-eslint/no-unnecessary-type-conversion': 'error',
369
- ...configureWrappedCoreRule('prefer-promise-reject-errors'),
366
+ ...configureWrappedCoreRule('prefer-promise-reject-errors', undefined),
370
367
  '@typescript-eslint/prefer-find': 'error',
371
368
  '@typescript-eslint/no-deprecated': 'off',
372
369
  '@typescript-eslint/no-unnecessary-parameter-property-assignment': 'error',
373
370
  '@typescript-eslint/no-unnecessary-type-parameters': 'error',
374
371
  '@typescript-eslint/no-unsafe-type-assertion': 'error',
375
- '@typescript-eslint/related-getter-setter-pairs': 'off',
372
+ '@typescript-eslint/related-getter-setter-pairs': 'error',
376
373
  '@typescript-eslint/no-misused-spread': 'error',
377
-
378
374
  'functional/functional-parameters': 'off',
379
375
  'functional/immutable-data': 'off',
380
376
  'functional/no-classes': 'off',
@@ -399,7 +395,7 @@ export const typescriptConfig = {
399
395
  // named class/interface/type-alias references whose upstream
400
396
  // members are not declared readonly, so structural shallow
401
397
  // checks cannot be satisfied by any annotation.
402
- ignoreTypePattern: [ namedReferenceIgnorePattern ],
398
+ ignoreTypePattern: [namedReferenceIgnorePattern],
403
399
  fixer: {
404
400
  ReadonlyShallow: [
405
401
  {
@@ -446,7 +442,7 @@ export const typescriptConfig = {
446
442
  }
447
443
  ],
448
444
  'functional/prefer-tacit': 'error',
449
- 'functional/readonly-type': [ 'error', 'keyword' ],
445
+ 'functional/readonly-type': ['error', 'keyword'],
450
446
  'functional/no-class-inheritance': 'off',
451
447
  'functional/type-declaration-immutability': [
452
448
  'error',
@@ -484,13 +480,12 @@ export const typescriptConfig = {
484
480
  ]
485
481
  }
486
482
  ],
487
- ignoreTypePattern: [ namedReferenceIgnorePattern ],
483
+ ignoreTypePattern: [namedReferenceIgnorePattern],
488
484
  ignoreInterfaces: false
489
485
  }
490
486
  ],
491
- ...configureWrappedCoreRule('consistent-return'),
487
+ ...configureWrappedCoreRule('consistent-return', undefined),
492
488
  '@typescript-eslint/use-unknown-in-catch-callback-variable': 'error',
493
-
494
489
  'import/extensions': [
495
490
  'error',
496
491
  {
@@ -503,7 +498,6 @@ export const typescriptConfig = {
503
498
  json: 'ignorePackages'
504
499
  }
505
500
  ],
506
-
507
501
  'perfectionist/sort-intersection-types': [
508
502
  'error',
509
503
  {
@@ -573,3 +567,4 @@ export const typescriptConfig = {
573
567
  'perfectionist/sort-modules': 'off'
574
568
  }
575
569
  };
570
+ //# sourceMappingURL=typescript.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"typescript.js","sourceRoot":"","sources":["../../../../../configs/presets/typescript/typescript.ts"],"names":[],"mappings":"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"}
package/sbom.cdx.json CHANGED
@@ -9,57 +9,57 @@
9
9
  {
10
10
  "type": "application",
11
11
  "name": "packtory",
12
- "version": "0.0.32"
12
+ "version": "0.0.33"
13
13
  }
14
14
  ]
15
15
  },
16
16
  "component": {
17
17
  "type": "library",
18
18
  "name": "@enormora/eslint-config-typescript",
19
- "version": "0.0.42",
20
- "bom-ref": "pkg:npm/@enormora/eslint-config-typescript@0.0.42",
21
- "purl": "pkg:npm/@enormora/eslint-config-typescript@0.0.42"
19
+ "version": "0.0.44",
20
+ "bom-ref": "pkg:npm/@enormora/eslint-config-typescript@0.0.44",
21
+ "purl": "pkg:npm/@enormora/eslint-config-typescript@0.0.44"
22
22
  }
23
23
  },
24
24
  "components": [
25
25
  {
26
26
  "type": "library",
27
27
  "name": "@enormora/eslint-config-base",
28
- "version": "0.0.36",
29
- "bom-ref": "pkg:npm/@enormora/eslint-config-base@0.0.36",
28
+ "version": "0.0.38",
29
+ "bom-ref": "pkg:npm/@enormora/eslint-config-base@0.0.38",
30
30
  "scope": "optional",
31
31
  "licenses": [
32
32
  {
33
33
  "expression": "MIT"
34
34
  }
35
35
  ],
36
- "purl": "pkg:npm/@enormora/eslint-config-base@0.0.36"
36
+ "purl": "pkg:npm/@enormora/eslint-config-base@0.0.38"
37
37
  },
38
38
  {
39
39
  "type": "library",
40
40
  "name": "@typescript-eslint/eslint-plugin",
41
- "version": "8.60.1",
42
- "bom-ref": "pkg:npm/@typescript-eslint/eslint-plugin@8.60.1",
41
+ "version": "8.61.0",
42
+ "bom-ref": "pkg:npm/@typescript-eslint/eslint-plugin@8.61.0",
43
43
  "scope": "required",
44
44
  "licenses": [
45
45
  {
46
46
  "expression": "MIT"
47
47
  }
48
48
  ],
49
- "purl": "pkg:npm/@typescript-eslint/eslint-plugin@8.60.1"
49
+ "purl": "pkg:npm/@typescript-eslint/eslint-plugin@8.61.0"
50
50
  },
51
51
  {
52
52
  "type": "library",
53
53
  "name": "@typescript-eslint/parser",
54
- "version": "8.60.1",
55
- "bom-ref": "pkg:npm/@typescript-eslint/parser@8.60.1",
54
+ "version": "8.61.0",
55
+ "bom-ref": "pkg:npm/@typescript-eslint/parser@8.61.0",
56
56
  "scope": "required",
57
57
  "licenses": [
58
58
  {
59
59
  "expression": "MIT"
60
60
  }
61
61
  ],
62
- "purl": "pkg:npm/@typescript-eslint/parser@8.60.1"
62
+ "purl": "pkg:npm/@typescript-eslint/parser@8.61.0"
63
63
  },
64
64
  {
65
65
  "type": "library",
@@ -116,14 +116,14 @@
116
116
  ],
117
117
  "dependencies": [
118
118
  {
119
- "ref": "pkg:npm/@enormora/eslint-config-base@0.0.36"
119
+ "ref": "pkg:npm/@enormora/eslint-config-base@0.0.38"
120
120
  },
121
121
  {
122
- "ref": "pkg:npm/@enormora/eslint-config-typescript@0.0.42",
122
+ "ref": "pkg:npm/@enormora/eslint-config-typescript@0.0.44",
123
123
  "dependsOn": [
124
- "pkg:npm/@enormora/eslint-config-base@0.0.36",
125
- "pkg:npm/@typescript-eslint/eslint-plugin@8.60.1",
126
- "pkg:npm/@typescript-eslint/parser@8.60.1",
124
+ "pkg:npm/@enormora/eslint-config-base@0.0.38",
125
+ "pkg:npm/@typescript-eslint/eslint-plugin@8.61.0",
126
+ "pkg:npm/@typescript-eslint/parser@8.61.0",
127
127
  "pkg:npm/eslint-import-resolver-typescript@4.4.5",
128
128
  "pkg:npm/eslint-plugin-functional@10.0.0",
129
129
  "pkg:npm/eslint-plugin-import-x@4.16.2",
@@ -131,10 +131,10 @@
131
131
  ]
132
132
  },
133
133
  {
134
- "ref": "pkg:npm/@typescript-eslint/eslint-plugin@8.60.1"
134
+ "ref": "pkg:npm/@typescript-eslint/eslint-plugin@8.61.0"
135
135
  },
136
136
  {
137
- "ref": "pkg:npm/@typescript-eslint/parser@8.60.1"
137
+ "ref": "pkg:npm/@typescript-eslint/parser@8.61.0"
138
138
  },
139
139
  {
140
140
  "ref": "pkg:npm/eslint-import-resolver-typescript@4.4.5"