eslint-config-complete 4.1.4 → 4.1.5
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base-import-x.d.ts","sourceRoot":"","sources":["../../src/base/base-import-x.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"base-import-x.d.ts","sourceRoot":"","sources":["../../src/base/base-import-x.js"],"names":[],"mappings":"AA+NA;;;;;;;;;GASG;AACH,2DAuFE"}
|
|
@@ -34,6 +34,7 @@ const HELPFUL_WARNINGS = {
|
|
|
34
34
|
"**/scripts/**", // Files inside of a "scripts" directory.
|
|
35
35
|
"**/test/**", // Files inside of a "test" directory.
|
|
36
36
|
"**/tests/**", // Files inside of a "tests" directory.
|
|
37
|
+
"**/*.test.{js,cjs,mjs,ts,cts,mts}", // Test files
|
|
37
38
|
"**/*.config.{js,cjs,mjs,ts,cts,mts}", // Config files like "eslint.config.mjs"
|
|
38
39
|
"**/*.config.*.{js,cjs,mjs,ts,cts,mts}", // Config files like "eslint.config.json.mjs"
|
|
39
40
|
],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base-typescript-eslint.d.ts","sourceRoot":"","sources":["../../src/base/base-typescript-eslint.js"],"names":[],"mappings":"AAGA;;;GAGG;AACH,
|
|
1
|
+
{"version":3,"file":"base-typescript-eslint.d.ts","sourceRoot":"","sources":["../../src/base/base-typescript-eslint.js"],"names":[],"mappings":"AAGA;;;GAGG;AACH,oEAuiBE"}
|
|
@@ -402,6 +402,7 @@ export const baseTypeScriptESLint = defineConfig({
|
|
|
402
402
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing: false,
|
|
403
403
|
},
|
|
404
404
|
],
|
|
405
|
+
"@typescript-eslint/strict-void-return": "error",
|
|
405
406
|
/**
|
|
406
407
|
* The `allowDefaultCaseForExhaustiveSwitch` option is disabled and the
|
|
407
408
|
* `requireDefaultForNonUnion` option is enabled to make the rule stricter. The
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-complete",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.5",
|
|
4
4
|
"description": "A sharable ESLint config for TypeScript projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -27,29 +27,30 @@
|
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
29
|
"scripts": {
|
|
30
|
-
"build": "
|
|
31
|
-
"docs": "
|
|
32
|
-
"lint": "
|
|
30
|
+
"build": "bun run ./scripts/build.ts",
|
|
31
|
+
"docs": "bun run ./scripts/docs.ts",
|
|
32
|
+
"lint": "bun run ./scripts/lint.ts"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@stylistic/eslint-plugin": "5.
|
|
35
|
+
"@stylistic/eslint-plugin": "5.7.0",
|
|
36
36
|
"confusing-browser-globals": "1.0.11",
|
|
37
37
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
38
38
|
"eslint-plugin-complete": "1.2.4",
|
|
39
|
-
"eslint-plugin-eslint-plugin": "7.
|
|
39
|
+
"eslint-plugin-eslint-plugin": "7.3.0",
|
|
40
40
|
"eslint-plugin-import-x": "4.16.1",
|
|
41
|
-
"eslint-plugin-jsdoc": "
|
|
42
|
-
"eslint-plugin-n": "17.23.
|
|
41
|
+
"eslint-plugin-jsdoc": "62.0.0",
|
|
42
|
+
"eslint-plugin-n": "17.23.2",
|
|
43
43
|
"eslint-plugin-unicorn": "62.0.0",
|
|
44
44
|
"jsonc-eslint-parser": "2.4.2",
|
|
45
|
-
"typescript-eslint": "8.
|
|
45
|
+
"typescript-eslint": "8.53.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@eslint/js": "9.39.2",
|
|
49
49
|
"@types/confusing-browser-globals": "1.0.3",
|
|
50
50
|
"@types/eslint-config-prettier": "6.11.3",
|
|
51
|
-
"@types/node": "25.0.
|
|
52
|
-
"
|
|
51
|
+
"@types/node": "25.0.9",
|
|
52
|
+
"@typescript-eslint/utils": "8.53.0",
|
|
53
|
+
"complete-common": "2.16.0",
|
|
53
54
|
"complete-node": "16.2.0",
|
|
54
55
|
"eslint-config-prettier": "10.1.8",
|
|
55
56
|
"extract-comments": "1.1.0",
|