@eslinted/core 18.2.1 → 18.2.3
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/.markdownlint.jsonc +1 -1
- package/LICENSE +0 -1
- package/package.json +4 -4
- package/tsconfig.json +22 -35
package/.markdownlint.jsonc
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"$meta": {
|
3
|
-
"template": "0.
|
3
|
+
"template": "37.0.0",
|
4
4
|
"rules": "https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/Rules.md",
|
5
5
|
},
|
6
6
|
// "$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.4/schema/markdownlint-config-schema.json",
|
package/LICENSE
CHANGED
package/package.json
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
{
|
2
|
-
"$
|
2
|
+
"$pkg": "2214.1.0",
|
3
3
|
"$schema": "https://json.schemastore.org/package",
|
4
4
|
"$help": "https://docs.npmjs.com/cli/configuring-npm/package-json",
|
5
5
|
"name": "@eslinted/core",
|
6
|
-
"version": "18.2.
|
6
|
+
"version": "18.2.3",
|
7
7
|
"description": "Internal core for npm package `linted`, responsible for producing an array of fully-formed ESLint configurations according to `linted` spec.",
|
8
8
|
"repository": "github:jimmy-zhening-luo/linted-core",
|
9
9
|
"license": "MIT",
|
@@ -18,9 +18,9 @@
|
|
18
18
|
"globals": "^16.0.0"
|
19
19
|
},
|
20
20
|
"devDependencies": {
|
21
|
-
"@types/chai": "^5.2.
|
21
|
+
"@types/chai": "^5.2.1",
|
22
22
|
"@types/mocha": "^10.0.10",
|
23
|
-
"@types/node": "^22.13.
|
23
|
+
"@types/node": "^22.13.13",
|
24
24
|
"chai": "^5.2.0",
|
25
25
|
"mocha": "^11.1.0",
|
26
26
|
"npm-run-all": "^4.1.5",
|
package/tsconfig.json
CHANGED
@@ -1,9 +1,7 @@
|
|
1
1
|
{
|
2
|
-
"display": "@
|
3
|
-
"version": "5.8.0",
|
2
|
+
"display": "tsc@5.8.1",
|
4
3
|
"$schema": "https://json.schemastore.org/tsconfig",
|
5
4
|
"$help": "https://www.typescriptlang.org/tsconfig/#quick-nav-Top%20Level",
|
6
|
-
// #region SCOPE
|
7
5
|
"include": [
|
8
6
|
"*.config.ts",
|
9
7
|
"src/**/*.ts",
|
@@ -11,9 +9,8 @@
|
|
11
9
|
"typings/**/*.d.ts",
|
12
10
|
],
|
13
11
|
"exclude": [],
|
14
|
-
// #endregion
|
15
12
|
"compilerOptions": {
|
16
|
-
// #region
|
13
|
+
// #region Type Check
|
17
14
|
"allowUnreachableCode": false,
|
18
15
|
"allowUnusedLabels": false,
|
19
16
|
"alwaysStrict": true,
|
@@ -34,9 +31,8 @@
|
|
34
31
|
"strictPropertyInitialization": true,
|
35
32
|
"useUnknownInCatchVariables": true,
|
36
33
|
// #endregion
|
37
|
-
|
38
|
-
|
39
|
-
// #region MODULES
|
34
|
+
//
|
35
|
+
// #region Modules
|
40
36
|
"allowArbitraryExtensions": true,
|
41
37
|
// "allowImportingTsExtensions": true,
|
42
38
|
// "allowUmdGlobalAccess": true,
|
@@ -59,9 +55,8 @@
|
|
59
55
|
/* {CONFIGURE} */
|
60
56
|
],
|
61
57
|
// #endregion
|
62
|
-
|
63
|
-
|
64
|
-
// #region EMIT
|
58
|
+
//
|
59
|
+
// #region Emit
|
65
60
|
"declaration": true,
|
66
61
|
"declarationDir": "dist",
|
67
62
|
"declarationMap": true,
|
@@ -84,22 +79,19 @@
|
|
84
79
|
// "sourceRoot": "",
|
85
80
|
// "stripInternal": true,
|
86
81
|
// #endregion
|
87
|
-
|
88
|
-
|
89
|
-
// #region JAVASCRIPT SUPPORT
|
82
|
+
//
|
83
|
+
// #region JS
|
90
84
|
// "allowJs": true,
|
91
85
|
// "checkJs": true,
|
92
86
|
// "maxNodeModuleJsDepth": 1,
|
93
87
|
// #endregion
|
94
|
-
|
95
|
-
|
96
|
-
// #region EDITOR SUPPORT
|
88
|
+
//
|
89
|
+
// #region Editor
|
97
90
|
// "disableSizeLimit": false,
|
98
91
|
// "plugins": [],
|
99
92
|
// #endregion
|
100
|
-
|
101
|
-
|
102
|
-
// #region INTEROP CONSTRAINTS
|
93
|
+
//
|
94
|
+
// #region Interop
|
103
95
|
"allowSyntheticDefaultImports": true,
|
104
96
|
"esModuleInterop": true,
|
105
97
|
"forceConsistentCasingInFileNames": true,
|
@@ -108,9 +100,8 @@
|
|
108
100
|
// "preserveSymlinks": true,
|
109
101
|
"verbatimModuleSyntax": true,
|
110
102
|
// #endregion
|
111
|
-
|
112
|
-
|
113
|
-
// #region LANGUAGE & ENVIRONMENT
|
103
|
+
//
|
104
|
+
// #region Language
|
114
105
|
// "emitDecoratorMetadata": true,
|
115
106
|
// "experimentalDecorators": true,
|
116
107
|
// "jsx": "preserve",
|
@@ -127,9 +118,8 @@
|
|
127
118
|
"target": "es2022",
|
128
119
|
// "useDefineForClassFields": true /* @default: target > es2022 : true; else : false*/,
|
129
120
|
// #endregion
|
130
|
-
|
131
|
-
|
132
|
-
// #region COMPILER DIAGNOSTICS
|
121
|
+
//
|
122
|
+
// #region Diagnostic
|
133
123
|
// "diagnostics": true,
|
134
124
|
// "explainFiles": true,
|
135
125
|
// "extendedDiagnostics": true,
|
@@ -139,9 +129,8 @@
|
|
139
129
|
// "noCheck": true,
|
140
130
|
// "traceResolution": true,
|
141
131
|
// #endregion
|
142
|
-
|
143
|
-
|
144
|
-
// #region PROJECTS
|
132
|
+
//
|
133
|
+
// #region Project
|
145
134
|
// "composite": true,
|
146
135
|
// "disableReferencedProjectLoad": true,
|
147
136
|
// "disableSolutionSearching": true,
|
@@ -149,16 +138,14 @@
|
|
149
138
|
"incremental": true,
|
150
139
|
"tsBuildInfoFile": "dist/.tsbuildinfo",
|
151
140
|
// #endregion
|
152
|
-
|
153
|
-
|
154
|
-
// #region OUTPUT FORMATTING
|
141
|
+
//
|
142
|
+
// #region Print
|
155
143
|
// "noErrorTruncation": true,
|
156
144
|
// "preserveWatchOutput": true,
|
157
145
|
// "pretty": true,
|
158
146
|
// #endregion
|
159
|
-
|
160
|
-
|
161
|
-
// #region COMPLETENESS
|
147
|
+
//
|
148
|
+
// #region Completeness
|
162
149
|
"skipLibCheck": false,
|
163
150
|
// #endregion
|
164
151
|
},
|