@eslinted/defaults 12.11.0 → 12.11.1
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 -156
package/tsconfig.json
CHANGED
|
@@ -1,156 +1,75 @@
|
|
|
1
|
-
{
|
|
2
|
-
"display": "tsc@509.
|
|
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
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
// "
|
|
28
|
-
// "
|
|
29
|
-
// "
|
|
30
|
-
// "
|
|
31
|
-
// "
|
|
32
|
-
// "
|
|
33
|
-
//
|
|
34
|
-
|
|
35
|
-
//
|
|
36
|
-
"
|
|
37
|
-
// "
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
// "
|
|
45
|
-
|
|
46
|
-
// "
|
|
47
|
-
// "
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"
|
|
51
|
-
// "
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
//
|
|
61
|
-
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
// "
|
|
68
|
-
|
|
69
|
-
// "
|
|
70
|
-
// "
|
|
71
|
-
|
|
72
|
-
// "
|
|
73
|
-
// "
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
"outDir": "dist",
|
|
77
|
-
// "outFile": "./",
|
|
78
|
-
// "preserveConstEnums": true,
|
|
79
|
-
"removeComments": true /* @OVERRIDE */,
|
|
80
|
-
"sourceMap": true,
|
|
81
|
-
// "sourceRoot": "",
|
|
82
|
-
// "stripInternal": true,
|
|
83
|
-
// #endregion
|
|
84
|
-
//
|
|
85
|
-
// #region JS
|
|
86
|
-
// "allowJs": true,
|
|
87
|
-
// "checkJs": true,
|
|
88
|
-
// "maxNodeModuleJsDepth": 1,
|
|
89
|
-
// #endregion
|
|
90
|
-
//
|
|
91
|
-
// #region Editor
|
|
92
|
-
// "disableSizeLimit": false,
|
|
93
|
-
// "plugins": [],
|
|
94
|
-
// #endregion
|
|
95
|
-
//
|
|
96
|
-
// #region Interop
|
|
97
|
-
"allowSyntheticDefaultImports": true,
|
|
98
|
-
// "erasableSyntaxOnly": true,
|
|
99
|
-
// "esModuleInterop": true,
|
|
100
|
-
"forceConsistentCasingInFileNames": true,
|
|
101
|
-
// "isolatedDeclarations": false,
|
|
102
|
-
"isolatedModules": true /* @OVERRIDE */,
|
|
103
|
-
// "preserveSymlinks": true,
|
|
104
|
-
"verbatimModuleSyntax": true,
|
|
105
|
-
// #endregion
|
|
106
|
-
//
|
|
107
|
-
// #region Language
|
|
108
|
-
// "emitDecoratorMetadata": true,
|
|
109
|
-
// "experimentalDecorators": true,
|
|
110
|
-
// "jsx": "preserve",
|
|
111
|
-
// "jsxFactory": "",
|
|
112
|
-
// "jsxFragmentFactory": "",
|
|
113
|
-
// "jsxImportSource": "",
|
|
114
|
-
"lib": [
|
|
115
|
-
"esnext",
|
|
116
|
-
/* {CONFIGURE} */
|
|
117
|
-
],
|
|
118
|
-
// "libReplacement": true /* @default: true | INFO: in the future, @default may become false */,
|
|
119
|
-
// "moduleDetection": "auto",
|
|
120
|
-
// "noLib": true,
|
|
121
|
-
// "reactNamespace": "",
|
|
122
|
-
"target": "esnext",
|
|
123
|
-
// "useDefineForClassFields": true /* @default true if `target` > `es2022`, else false*/,
|
|
124
|
-
// #endregion
|
|
125
|
-
//
|
|
126
|
-
// #region Diagnostic
|
|
127
|
-
// "diagnostics": true,
|
|
128
|
-
// "explainFiles": true,
|
|
129
|
-
// "extendedDiagnostics": true,
|
|
130
|
-
// "generateCpuProfile": "profile.cpuprofile",
|
|
131
|
-
// "listEmittedFiles": true,
|
|
132
|
-
// "listFiles": true,
|
|
133
|
-
// "noCheck": true,
|
|
134
|
-
// "traceResolution": true,
|
|
135
|
-
// #endregion
|
|
136
|
-
//
|
|
137
|
-
// #region Project
|
|
138
|
-
// "composite": true,
|
|
139
|
-
// "disableReferencedProjectLoad": true,
|
|
140
|
-
// "disableSolutionSearching": true,
|
|
141
|
-
// "disableSourceOfProjectReferenceRedirect": true,
|
|
142
|
-
"incremental": true /* @default true if `composite`, else false */,
|
|
143
|
-
// "tsBuildInfoFile": "",
|
|
144
|
-
// #endregion
|
|
145
|
-
//
|
|
146
|
-
// #region Print
|
|
147
|
-
// "noErrorTruncation": true,
|
|
148
|
-
// "preserveWatchOutput": true,
|
|
149
|
-
// "pretty": true,
|
|
150
|
-
// #endregion
|
|
151
|
-
//
|
|
152
|
-
// #region Complete
|
|
153
|
-
// "skipLibCheck": true,
|
|
154
|
-
// #endregion
|
|
155
|
-
},
|
|
156
|
-
}
|
|
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
|
+
}
|