@eslinted/defaults 12.11.1 → 12.12.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.
- package/.github/workflows/RELEASE.yml +36 -36
- package/.github/workflows/rc.yml +36 -36
- package/.markdownlint.jsonc +97 -97
- package/.mocharc.yml +15 -15
- package/LICENSE +20 -20
- package/README.md +4 -4
- package/eslint.config.js +3 -3
- package/package.json +56 -56
- package/src/files/_factory/index.ts +76 -76
- package/src/files/_factory/project/index.ts +2 -2
- package/src/files/_factory/project/roots.ts +4 -4
- package/src/files/_factory/project/subroots.ts +8 -8
- package/src/files/index.ts +23 -23
- package/src/files/scopes/css.ts +5 -5
- package/src/files/scopes/html.ts +5 -5
- package/src/files/scopes/js.ts +5 -5
- package/src/files/scopes/json.ts +5 -5
- package/src/files/scopes/jsonc.ts +5 -5
- package/src/files/scopes/jsoncc.ts +9 -9
- package/src/files/scopes/mocha.ts +5 -5
- package/src/files/scopes/svelte.ts +5 -5
- package/src/files/scopes/ts.ts +5 -5
- package/src/files/scopes/yml.ts +8 -8
- package/src/ignores/global.ts +5 -5
- package/src/ignores/index.ts +25 -25
- package/src/ignores/scopes/css.ts +1 -1
- package/src/ignores/scopes/html.ts +1 -1
- package/src/ignores/scopes/js.ts +1 -1
- package/src/ignores/scopes/json.ts +1 -1
- package/src/ignores/scopes/jsonc.ts +1 -1
- package/src/ignores/scopes/jsoncc.ts +1 -1
- package/src/ignores/scopes/mocha.ts +1 -1
- package/src/ignores/scopes/svelte.ts +1 -1
- package/src/ignores/scopes/ts.ts +1 -1
- package/src/ignores/scopes/yml.ts +1 -1
- package/src/index.ts +10 -10
- package/src/rules/_strings/id.ts +21 -21
- package/src/rules/_strings/index.ts +3 -3
- package/src/rules/_strings/option.ts +30 -30
- package/src/rules/_strings/state.spec.ts +64 -64
- package/src/rules/_strings/state.ts +4 -4
- package/src/rules/index.ts +23 -23
- package/src/rules/scopes/css/enable.ts +31 -31
- package/src/rules/scopes/css/index.ts +3 -3
- package/src/rules/scopes/enable.style.ts +507 -507
- package/src/rules/scopes/enable.ts +390 -390
- package/src/rules/scopes/html/index.ts +3 -3
- package/src/rules/scopes/html/plugin/index.ts +113 -113
- package/src/rules/scopes/index.ts +7 -7
- package/src/rules/scopes/json/enable.ts +18 -18
- package/src/rules/scopes/json/index.ts +9 -9
- package/src/rules/scopes/json/plugin/extension.ts +60 -60
- package/src/rules/scopes/json/plugin/index.ts +35 -35
- package/src/rules/scopes/jsonc/index.ts +3 -3
- package/src/rules/scopes/jsonc/plugin/index.ts +12 -12
- package/src/rules/scopes/jsoncc/index.ts +3 -3
- package/src/rules/scopes/jsoncc/plugin/index.ts +16 -16
- package/src/rules/scopes/mocha/chai/expect.ts +16 -16
- package/src/rules/scopes/mocha/chai/index.ts +18 -18
- package/src/rules/scopes/mocha/disable.ts +13 -13
- package/src/rules/scopes/mocha/enable.ts +36 -36
- package/src/rules/scopes/mocha/index.ts +11 -11
- package/src/rules/scopes/svelte/disable.ts +19 -19
- package/src/rules/scopes/svelte/enable.ts +157 -157
- package/src/rules/scopes/svelte/extension/disable.ts +14 -14
- package/src/rules/scopes/svelte/extension/index.ts +17 -17
- package/src/rules/scopes/svelte/index.ts +11 -11
- package/src/rules/scopes/ts/disable.ts +30 -30
- package/src/rules/scopes/ts/enable.ts +188 -188
- package/src/rules/scopes/ts/extension/disable.ts +35 -35
- package/src/rules/scopes/ts/extension/index.ts +62 -62
- package/src/rules/scopes/ts/index.ts +11 -11
- package/src/rules/scopes/yml/index.ts +7 -7
- package/src/rules/scopes/yml/plugin/extension.ts +55 -55
- package/src/rules/scopes/yml/plugin/index.ts +38 -38
- package/src/settings/global/index.ts +6 -6
- package/src/settings/index.ts +7 -7
- package/src/settings/registry/index.ts +23 -23
- package/src/settings/registry/manifests/css.ts +9 -9
- package/src/settings/registry/manifests/html.ts +10 -10
- package/src/settings/registry/manifests/js.ts +8 -8
- package/src/settings/registry/manifests/json.ts +7 -7
- package/src/settings/registry/manifests/jsonc.ts +9 -9
- package/src/settings/registry/manifests/jsoncc.ts +9 -9
- package/src/settings/registry/manifests/mocha.ts +8 -8
- package/src/settings/registry/manifests/svelte.ts +10 -10
- package/src/settings/registry/manifests/ts.ts +30 -30
- package/src/settings/registry/manifests/yml.ts +9 -9
- package/tsconfig.json +75 -75
package/tsconfig.json
CHANGED
|
@@ -1,75 +1,75 @@
|
|
|
1
|
-
{
|
|
2
|
-
"display": "tsc@509.1.0",
|
|
3
|
-
"$schema": "https://json.schemastore.org/tsconfig",
|
|
4
|
-
"$help": "https://www.typescriptlang.org/tsconfig/#quick-nav-Top%20Level",
|
|
5
|
-
"include": [
|
|
6
|
-
"*.config.ts",
|
|
7
|
-
"src/**/*.ts",
|
|
8
|
-
"typings/**/*.d.ts",
|
|
9
|
-
],
|
|
10
|
-
"compilerOptions": {
|
|
11
|
-
"allowUnreachableCode": false,
|
|
12
|
-
"allowUnusedLabels": false,
|
|
13
|
-
"exactOptionalPropertyTypes": true,
|
|
14
|
-
"noFallthroughCasesInSwitch": true,
|
|
15
|
-
"noImplicitOverride": true,
|
|
16
|
-
"noImplicitReturns": true,
|
|
17
|
-
"noPropertyAccessFromIndexSignature": true,
|
|
18
|
-
"noUncheckedIndexedAccess": true,
|
|
19
|
-
"noUnusedLocals": true,
|
|
20
|
-
"noUnusedParameters": true,
|
|
21
|
-
"strict": true,
|
|
22
|
-
"allowArbitraryExtensions": true,
|
|
23
|
-
// "allowImportingTsExtensions": true,
|
|
24
|
-
// "baseUrl": "./",
|
|
25
|
-
"module": "esnext",
|
|
26
|
-
"moduleResolution": "bundler",
|
|
27
|
-
// "moduleSuffixes": [],
|
|
28
|
-
// "noResolve": true,
|
|
29
|
-
// "noUncheckedSideEffectImports": true,
|
|
30
|
-
// "paths": {},
|
|
31
|
-
// "resolveJsonModule": true,
|
|
32
|
-
// "resolvePackageJsonExports": true,
|
|
33
|
-
// "resolvePackageJsonImports": true,
|
|
34
|
-
"rewriteRelativeImportExtensions": true,
|
|
35
|
-
// "rootDir": "src",
|
|
36
|
-
// "rootDirs": [],
|
|
37
|
-
// "typeRoots": [],
|
|
38
|
-
"types": [
|
|
39
|
-
"mocha",
|
|
40
|
-
"chai",
|
|
41
|
-
/* {CONFIGURE} */
|
|
42
|
-
],
|
|
43
|
-
"declaration": true,
|
|
44
|
-
// "declarationDir": "",
|
|
45
|
-
"declarationMap": true,
|
|
46
|
-
// "emitDeclarationOnly": true,
|
|
47
|
-
// "noEmit": true,
|
|
48
|
-
"noEmitOnError": true,
|
|
49
|
-
"outDir": "dist",
|
|
50
|
-
// "outFile": "./",
|
|
51
|
-
// "preserveConstEnums": true,
|
|
52
|
-
"removeComments": true,
|
|
53
|
-
"sourceMap": true,
|
|
54
|
-
// "allowJs": true,
|
|
55
|
-
// "checkJs": true,
|
|
56
|
-
"allowSyntheticDefaultImports": true,
|
|
57
|
-
// "erasableSyntaxOnly": true,
|
|
58
|
-
// "esModuleInterop": true,
|
|
59
|
-
"forceConsistentCasingInFileNames": true,
|
|
60
|
-
// "isolatedDeclarations": false,
|
|
61
|
-
"isolatedModules": true /* @OVERRIDE */,
|
|
62
|
-
"verbatimModuleSyntax": true,
|
|
63
|
-
"lib": [
|
|
64
|
-
"esnext",
|
|
65
|
-
/* {CONFIGURE} */
|
|
66
|
-
],
|
|
67
|
-
// "moduleDetection": "auto",
|
|
68
|
-
"target": "esnext",
|
|
69
|
-
// "useDefineForClassFields": true,
|
|
70
|
-
// "composite": true,
|
|
71
|
-
"incremental": true,
|
|
72
|
-
// "tsBuildInfoFile": "",
|
|
73
|
-
// "skipLibCheck": true,
|
|
74
|
-
},
|
|
75
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"display": "tsc@509.1.0",
|
|
3
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
4
|
+
"$help": "https://www.typescriptlang.org/tsconfig/#quick-nav-Top%20Level",
|
|
5
|
+
"include": [
|
|
6
|
+
"*.config.ts",
|
|
7
|
+
"src/**/*.ts",
|
|
8
|
+
"typings/**/*.d.ts",
|
|
9
|
+
],
|
|
10
|
+
"compilerOptions": {
|
|
11
|
+
"allowUnreachableCode": false,
|
|
12
|
+
"allowUnusedLabels": false,
|
|
13
|
+
"exactOptionalPropertyTypes": true,
|
|
14
|
+
"noFallthroughCasesInSwitch": true,
|
|
15
|
+
"noImplicitOverride": true,
|
|
16
|
+
"noImplicitReturns": true,
|
|
17
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
18
|
+
"noUncheckedIndexedAccess": true,
|
|
19
|
+
"noUnusedLocals": true,
|
|
20
|
+
"noUnusedParameters": true,
|
|
21
|
+
"strict": true,
|
|
22
|
+
"allowArbitraryExtensions": true,
|
|
23
|
+
// "allowImportingTsExtensions": true,
|
|
24
|
+
// "baseUrl": "./",
|
|
25
|
+
"module": "esnext",
|
|
26
|
+
"moduleResolution": "bundler",
|
|
27
|
+
// "moduleSuffixes": [],
|
|
28
|
+
// "noResolve": true,
|
|
29
|
+
// "noUncheckedSideEffectImports": true,
|
|
30
|
+
// "paths": {},
|
|
31
|
+
// "resolveJsonModule": true,
|
|
32
|
+
// "resolvePackageJsonExports": true,
|
|
33
|
+
// "resolvePackageJsonImports": true,
|
|
34
|
+
"rewriteRelativeImportExtensions": true,
|
|
35
|
+
// "rootDir": "src",
|
|
36
|
+
// "rootDirs": [],
|
|
37
|
+
// "typeRoots": [],
|
|
38
|
+
"types": [
|
|
39
|
+
"mocha",
|
|
40
|
+
"chai",
|
|
41
|
+
/* {CONFIGURE} */
|
|
42
|
+
],
|
|
43
|
+
"declaration": true,
|
|
44
|
+
// "declarationDir": "",
|
|
45
|
+
"declarationMap": true,
|
|
46
|
+
// "emitDeclarationOnly": true,
|
|
47
|
+
// "noEmit": true,
|
|
48
|
+
"noEmitOnError": true,
|
|
49
|
+
"outDir": "dist",
|
|
50
|
+
// "outFile": "./",
|
|
51
|
+
// "preserveConstEnums": true,
|
|
52
|
+
"removeComments": true,
|
|
53
|
+
"sourceMap": true,
|
|
54
|
+
// "allowJs": true,
|
|
55
|
+
// "checkJs": true,
|
|
56
|
+
"allowSyntheticDefaultImports": true,
|
|
57
|
+
// "erasableSyntaxOnly": true,
|
|
58
|
+
// "esModuleInterop": true,
|
|
59
|
+
"forceConsistentCasingInFileNames": true,
|
|
60
|
+
// "isolatedDeclarations": false,
|
|
61
|
+
"isolatedModules": true /* @OVERRIDE */,
|
|
62
|
+
"verbatimModuleSyntax": true,
|
|
63
|
+
"lib": [
|
|
64
|
+
"esnext",
|
|
65
|
+
/* {CONFIGURE} */
|
|
66
|
+
],
|
|
67
|
+
// "moduleDetection": "auto",
|
|
68
|
+
"target": "esnext",
|
|
69
|
+
// "useDefineForClassFields": true,
|
|
70
|
+
// "composite": true,
|
|
71
|
+
"incremental": true,
|
|
72
|
+
// "tsBuildInfoFile": "",
|
|
73
|
+
// "skipLibCheck": true,
|
|
74
|
+
},
|
|
75
|
+
}
|