linted 30.12.0 → 30.12.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 +3 -3
- package/tsconfig.json +6 -87
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": "30.12.
|
6
|
+
"version": "30.12.1",
|
7
7
|
"repository": "github:jimmy-zhening-luo/linted",
|
8
8
|
"private": false,
|
9
9
|
"engineStrict": true,
|
@@ -32,8 +32,8 @@
|
|
32
32
|
"dependencies": {
|
33
33
|
"@eslint/css": "0.10.0",
|
34
34
|
"@eslint/json": "0.13.1",
|
35
|
-
"@eslinted/core": "23.0.
|
36
|
-
"@eslinted/defaults": "12.11.
|
35
|
+
"@eslinted/core": "23.0.5",
|
36
|
+
"@eslinted/defaults": "12.11.1",
|
37
37
|
"@html-eslint/eslint-plugin": "0.44.0",
|
38
38
|
"@stylistic/eslint-plugin": "5.2.3",
|
39
39
|
"eslint-plugin-chai-expect": "3.1.0",
|
package/tsconfig.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
{
|
2
|
-
"display": "tsc@509.
|
2
|
+
"display": "tsc@509.1.0",
|
3
3
|
"$schema": "https://json.schemastore.org/tsconfig",
|
4
4
|
"$help": "https://www.typescriptlang.org/tsconfig/#quick-nav-Top%20Level",
|
5
5
|
"include": [
|
@@ -7,43 +7,27 @@
|
|
7
7
|
"src/**/*.ts",
|
8
8
|
"typings/**/*.d.ts",
|
9
9
|
],
|
10
|
-
"exclude": [],
|
11
10
|
"compilerOptions": {
|
12
|
-
// #region Typecheck
|
13
11
|
"allowUnreachableCode": false,
|
14
12
|
"allowUnusedLabels": false,
|
15
|
-
// "alwaysStrict": true /* @default true if `strict`, else false */,
|
16
13
|
"exactOptionalPropertyTypes": true,
|
17
14
|
"noFallthroughCasesInSwitch": true,
|
18
|
-
// "noImplicitAny": true /* @default true if `strict`, else false */,
|
19
15
|
"noImplicitOverride": true,
|
20
16
|
"noImplicitReturns": true,
|
21
|
-
// "noImplicitThis": true /* @default true if `strict`, else false */,
|
22
17
|
"noPropertyAccessFromIndexSignature": true,
|
23
18
|
"noUncheckedIndexedAccess": true,
|
24
19
|
"noUnusedLocals": true,
|
25
20
|
"noUnusedParameters": true,
|
26
|
-
"strict": true
|
27
|
-
// "strictBindCallApply": true /* @default true if `strict`, else false */,
|
28
|
-
// "strictBuiltinIteratorReturn": true /* @default true if `strict`, else false */,
|
29
|
-
// "strictFunctionTypes": true /* @default true if `strict`, else false */,
|
30
|
-
// "strictNullChecks": true /* @default true if `strict`, else false */,
|
31
|
-
// "strictPropertyInitialization": true /* @default true if `strict`, else false */,
|
32
|
-
// "useUnknownInCatchVariables": true /* @default true if `strict`, else false */,
|
33
|
-
// #endregion
|
34
|
-
//
|
35
|
-
// #region Modules
|
21
|
+
"strict": true,
|
36
22
|
"allowArbitraryExtensions": true,
|
37
23
|
// "allowImportingTsExtensions": true,
|
38
|
-
// "allowUmdGlobalAccess": true,
|
39
24
|
// "baseUrl": "./",
|
40
|
-
// "customConditions": [],
|
41
25
|
"module": "esnext",
|
42
26
|
"moduleResolution": "bundler",
|
43
27
|
// "moduleSuffixes": [],
|
44
28
|
// "noResolve": true,
|
45
29
|
// "noUncheckedSideEffectImports": true,
|
46
|
-
// "paths": {
|
30
|
+
// "paths": {},
|
47
31
|
// "resolveJsonModule": true,
|
48
32
|
// "resolvePackageJsonExports": true,
|
49
33
|
// "resolvePackageJsonImports": true,
|
@@ -56,101 +40,36 @@
|
|
56
40
|
"chai",
|
57
41
|
/* {CONFIGURE} */
|
58
42
|
],
|
59
|
-
// #endregion
|
60
|
-
//
|
61
|
-
// #region Emit
|
62
43
|
"declaration": true,
|
63
44
|
// "declarationDir": "",
|
64
45
|
"declarationMap": true,
|
65
|
-
// "downlevelIteration": true,
|
66
|
-
// "emitBOM": true,
|
67
46
|
// "emitDeclarationOnly": true,
|
68
|
-
// "importHelpers": true,
|
69
|
-
// "inlineSourceMap": true,
|
70
|
-
// "inlineSources": true,
|
71
|
-
// "mapRoot": "",
|
72
|
-
// "newLine": "crlf",
|
73
47
|
// "noEmit": true,
|
74
|
-
// "noEmitHelpers": true,
|
75
48
|
"noEmitOnError": true,
|
76
49
|
"outDir": "dist",
|
77
50
|
// "outFile": "./",
|
78
51
|
// "preserveConstEnums": true,
|
79
|
-
"removeComments": true
|
52
|
+
"removeComments": true,
|
80
53
|
"sourceMap": true,
|
81
|
-
// "sourceRoot": "",
|
82
|
-
// "stripInternal": true,
|
83
|
-
// #endregion
|
84
|
-
//
|
85
|
-
// #region JS
|
86
54
|
// "allowJs": true,
|
87
55
|
// "checkJs": true,
|
88
|
-
// "maxNodeModuleJsDepth": 1,
|
89
|
-
// #endregion
|
90
|
-
//
|
91
|
-
// #region Editor
|
92
|
-
// "disableSizeLimit": false,
|
93
|
-
// "plugins": [],
|
94
|
-
// #endregion
|
95
|
-
//
|
96
|
-
// #region Interop
|
97
56
|
"allowSyntheticDefaultImports": true,
|
98
57
|
// "erasableSyntaxOnly": true,
|
99
58
|
// "esModuleInterop": true,
|
100
59
|
"forceConsistentCasingInFileNames": true,
|
101
60
|
// "isolatedDeclarations": false,
|
102
61
|
"isolatedModules": true /* @OVERRIDE */,
|
103
|
-
// "preserveSymlinks": true,
|
104
62
|
"verbatimModuleSyntax": true,
|
105
|
-
// #endregion
|
106
|
-
//
|
107
|
-
// #region Language
|
108
|
-
// "emitDecoratorMetadata": true,
|
109
|
-
// "experimentalDecorators": true,
|
110
|
-
// "jsx": "preserve",
|
111
|
-
// "jsxFactory": "",
|
112
|
-
// "jsxFragmentFactory": "",
|
113
|
-
// "jsxImportSource": "",
|
114
63
|
"lib": [
|
115
64
|
"esnext",
|
116
65
|
/* {CONFIGURE} */
|
117
66
|
],
|
118
|
-
// "libReplacement": true /* @default: true | INFO: in the future, @default may become false */,
|
119
67
|
// "moduleDetection": "auto",
|
120
|
-
// "noLib": true,
|
121
|
-
// "reactNamespace": "",
|
122
68
|
"target": "esnext",
|
123
|
-
// "useDefineForClassFields": true
|
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
|
69
|
+
// "useDefineForClassFields": true,
|
138
70
|
// "composite": true,
|
139
|
-
|
140
|
-
// "disableSolutionSearching": true,
|
141
|
-
// "disableSourceOfProjectReferenceRedirect": true,
|
142
|
-
"incremental": true /* @default true if `composite`, else false */,
|
71
|
+
"incremental": true,
|
143
72
|
// "tsBuildInfoFile": "",
|
144
|
-
// #endregion
|
145
|
-
//
|
146
|
-
// #region Print
|
147
|
-
// "noErrorTruncation": true,
|
148
|
-
// "preserveWatchOutput": true,
|
149
|
-
// "pretty": true,
|
150
|
-
// #endregion
|
151
|
-
//
|
152
|
-
// #region Complete
|
153
73
|
"skipLibCheck": true /* @OVERRIDE */,
|
154
|
-
// #endregion
|
155
74
|
},
|
156
75
|
}
|