linted 28.3.0 → 28.3.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/package.json +4 -4
- package/tsconfig.json +37 -35
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"$schema": "https://json.schemastore.org/package",
|
4
4
|
"$help": "https://docs.npmjs.com/cli/configuring-npm/package-json",
|
5
5
|
"name": "linted",
|
6
|
-
"version": "28.3.
|
6
|
+
"version": "28.3.1",
|
7
7
|
"description": "ESLint mono-plugin bundler with strict, opinionated defaults for (Stylistic) JavaScript, TypeScript, Svelte, HTML, Tailwind/CSS, JSON, JSONC, YAML, and Mocha.",
|
8
8
|
"repository": "github:jimmy-zhening-luo/linted",
|
9
9
|
"license": "MIT",
|
@@ -32,8 +32,8 @@
|
|
32
32
|
},
|
33
33
|
"dependencies": {
|
34
34
|
"@eslint/css": "0.4.0",
|
35
|
-
"@eslinted/core": "16.2.
|
36
|
-
"@eslinted/defaults": "7.1.
|
35
|
+
"@eslinted/core": "16.2.5",
|
36
|
+
"@eslinted/defaults": "7.1.5",
|
37
37
|
"@html-eslint/eslint-plugin": "0.35.2",
|
38
38
|
"@html-eslint/parser": "0.35.2",
|
39
39
|
"@stylistic/eslint-plugin": "4.2.0",
|
@@ -46,7 +46,7 @@
|
|
46
46
|
"jsonc-eslint-parser": "2.4.0",
|
47
47
|
"svelte": "^5.22.6",
|
48
48
|
"svelte-eslint-parser": "1.0.1",
|
49
|
-
"typescript-eslint": "8.26.
|
49
|
+
"typescript-eslint": "8.26.1",
|
50
50
|
"yaml-eslint-parser": "1.3.0"
|
51
51
|
},
|
52
52
|
"devDependencies": {
|
package/tsconfig.json
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
{
|
2
|
-
"display": "@
|
3
|
-
"version": "5.
|
4
|
-
"$help": "https://www.typescriptlang.org/tsconfig/#quick-nav-Top%20Level",
|
2
|
+
"display": "@prototypic/tsconfig",
|
3
|
+
"version": "5.8.0",
|
5
4
|
"$schema": "https://json.schemastore.org/tsconfig",
|
5
|
+
"$help": "https://www.typescriptlang.org/tsconfig/#quick-nav-Top%20Level",
|
6
|
+
// #region SCOPE
|
6
7
|
"include": [
|
7
8
|
"*.config.ts",
|
8
9
|
"src/**/*.ts",
|
@@ -10,6 +11,7 @@
|
|
10
11
|
"typings/**/*.d.ts",
|
11
12
|
],
|
12
13
|
"exclude": [],
|
14
|
+
// #endregion
|
13
15
|
"compilerOptions": {
|
14
16
|
// #region TYPE CHECKING
|
15
17
|
"allowUnreachableCode": false,
|
@@ -31,9 +33,9 @@
|
|
31
33
|
"strictNullChecks": true,
|
32
34
|
"strictPropertyInitialization": true,
|
33
35
|
"useUnknownInCatchVariables": true,
|
34
|
-
// #endregion
|
35
|
-
|
36
|
-
|
36
|
+
// #endregion
|
37
|
+
/*
|
38
|
+
*/
|
37
39
|
// #region MODULES
|
38
40
|
"allowArbitraryExtensions": true,
|
39
41
|
// "allowImportingTsExtensions": true,
|
@@ -56,9 +58,9 @@
|
|
56
58
|
"chai",
|
57
59
|
/* {CONFIGURE} */
|
58
60
|
],
|
59
|
-
// #endregion
|
60
|
-
|
61
|
-
|
61
|
+
// #endregion
|
62
|
+
/*
|
63
|
+
*/
|
62
64
|
// #region EMIT
|
63
65
|
"declaration": true,
|
64
66
|
"declarationDir": "dist",
|
@@ -81,22 +83,22 @@
|
|
81
83
|
"sourceMap": true,
|
82
84
|
// "sourceRoot": "",
|
83
85
|
// "stripInternal": true,
|
84
|
-
// #endregion
|
85
|
-
|
86
|
-
|
86
|
+
// #endregion
|
87
|
+
/*
|
88
|
+
*/
|
87
89
|
// #region JAVASCRIPT SUPPORT
|
88
90
|
// "allowJs": true,
|
89
91
|
// "checkJs": true,
|
90
92
|
// "maxNodeModuleJsDepth": 1,
|
91
|
-
// #endregion
|
92
|
-
|
93
|
-
|
93
|
+
// #endregion
|
94
|
+
/*
|
95
|
+
*/
|
94
96
|
// #region EDITOR SUPPORT
|
95
97
|
// "disableSizeLimit": false,
|
96
98
|
// "plugins": [],
|
97
|
-
// #endregion
|
98
|
-
|
99
|
-
|
99
|
+
// #endregion
|
100
|
+
/*
|
101
|
+
*/
|
100
102
|
// #region INTEROP CONSTRAINTS
|
101
103
|
"allowSyntheticDefaultImports": true,
|
102
104
|
"esModuleInterop": true,
|
@@ -105,10 +107,10 @@
|
|
105
107
|
// "isolatedModules": true,
|
106
108
|
// "preserveSymlinks": true,
|
107
109
|
"verbatimModuleSyntax": true,
|
108
|
-
// #endregion
|
109
|
-
|
110
|
-
|
111
|
-
// #region LANGUAGE
|
110
|
+
// #endregion
|
111
|
+
/*
|
112
|
+
*/
|
113
|
+
// #region LANGUAGE & ENVIRONMENT
|
112
114
|
// "emitDecoratorMetadata": true,
|
113
115
|
// "experimentalDecorators": true,
|
114
116
|
// "jsx": "preserve",
|
@@ -124,9 +126,9 @@
|
|
124
126
|
// "reactNamespace": "",
|
125
127
|
"target": "es2022",
|
126
128
|
// "useDefineForClassFields": true /* @default: target > es2022 : true; else : false*/,
|
127
|
-
// #endregion
|
128
|
-
|
129
|
-
|
129
|
+
// #endregion
|
130
|
+
/*
|
131
|
+
*/
|
130
132
|
// #region COMPILER DIAGNOSTICS
|
131
133
|
// "diagnostics": true,
|
132
134
|
// "explainFiles": true,
|
@@ -136,9 +138,9 @@
|
|
136
138
|
// "listFiles": true,
|
137
139
|
// "noCheck": true,
|
138
140
|
// "traceResolution": true,
|
139
|
-
// #endregion
|
140
|
-
|
141
|
-
|
141
|
+
// #endregion
|
142
|
+
/*
|
143
|
+
*/
|
142
144
|
// #region PROJECTS
|
143
145
|
// "composite": true,
|
144
146
|
// "disableReferencedProjectLoad": true,
|
@@ -146,18 +148,18 @@
|
|
146
148
|
// "disableSourceOfProjectReferenceRedirect": true,
|
147
149
|
"incremental": true,
|
148
150
|
"tsBuildInfoFile": "dist/.tsbuildinfo",
|
149
|
-
// #endregion
|
150
|
-
|
151
|
-
|
151
|
+
// #endregion
|
152
|
+
/*
|
153
|
+
*/
|
152
154
|
// #region OUTPUT FORMATTING
|
153
155
|
// "noErrorTruncation": true,
|
154
156
|
// "preserveWatchOutput": true,
|
155
157
|
// "pretty": true,
|
156
|
-
// #endregion
|
157
|
-
|
158
|
-
|
158
|
+
// #endregion
|
159
|
+
/*
|
160
|
+
*/
|
159
161
|
// #region COMPLETENESS
|
160
162
|
"skipLibCheck": true /* @OVERRIDE */,
|
161
|
-
// #endregion
|
163
|
+
// #endregion
|
162
164
|
},
|
163
165
|
}
|