@eslinted/core 18.3.1 → 18.4.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/dist/factory/scopes/css.js +1 -0
- package/dist/factory/scopes/css.js.map +1 -1
- package/dist/factory/scopes/html.js +1 -1
- package/dist/factory/scopes/html.js.map +1 -1
- package/dist/factory/scopes/mocha.js +4 -2
- package/dist/factory/scopes/mocha.js.map +1 -1
- package/dist/factory/scopes/svelte.js +3 -2
- package/dist/factory/scopes/svelte.js.map +1 -1
- package/dist/factory/scopes/ts.js +5 -2
- package/dist/factory/scopes/ts.js.map +1 -1
- package/dist/factory/scopes/yml.js +2 -1
- package/dist/factory/scopes/yml.js.map +1 -1
- package/package.json +1 -1
- package/tsconfig.json +25 -21
- package/.gitattributes +0 -10
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"css.js","sourceRoot":"","sources":["../../../src/factory/scopes/css.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,aAAa;IACpC,eAAe,GAAG;QAChC,MAAM,EAAE,IAAI;QACZ,OAAO,EAAE,IAAI;QACb,QAAQ,EAAE,KAAK;KACP,CAAC;IACK,aAAa,GAAG;
|
1
|
+
{"version":3,"file":"css.js","sourceRoot":"","sources":["../../../src/factory/scopes/css.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,aAAa;IACpC,eAAe,GAAG;QAChC,MAAM,EAAE,IAAI;QACZ,OAAO,EAAE,IAAI;QACb,QAAQ,EAAE,KAAK;KACP,CAAC;IACK,aAAa,GAAG;QAC9B,oGAAoG;QACpG,MAAM,EAAE,IAAI;KACJ,CAAC;IACK,SAAS,GAAG,EAAW,CAAC;IACxB,QAAQ,GAAG;QACzB,QAAQ,EAAE,SAAS;KACX,CAAC;CACZ"}
|
@@ -6,7 +6,7 @@ export default class HtmlManifest extends ScopeManifest {
|
|
6
6
|
};
|
7
7
|
parserOptions = {
|
8
8
|
parser: null,
|
9
|
-
frontmatter: true
|
9
|
+
frontmatter: true /* DOC: https://github.com/yeonjuan/html-eslint/issues/291#issuecomment-2726307803 */,
|
10
10
|
};
|
11
11
|
processor = {};
|
12
12
|
language = {};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"html.js","sourceRoot":"","sources":["../../../src/factory/scopes/html.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,aAAqB;IAC7C,eAAe,GAAG;QAChC,MAAM,EAAE,MAAM;QACd,OAAO,EAAE,IAAI;KACL,CAAC;IACK,aAAa,GAAG;QAC9B,MAAM,EAAE,IAAI;QACZ,WAAW,EAAE,IAAI;
|
1
|
+
{"version":3,"file":"html.js","sourceRoot":"","sources":["../../../src/factory/scopes/html.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,aAAqB;IAC7C,eAAe,GAAG;QAChC,MAAM,EAAE,MAAM;QACd,OAAO,EAAE,IAAI;KACL,CAAC;IACK,aAAa,GAAG;QAC9B,MAAM,EAAE,IAAI;QACZ,WAAW,EAAE,IAAI,CAAC,qFAAqF;KAC/F,CAAC;IACK,SAAS,GAAG,EAAW,CAAC;IACxB,QAAQ,GAAG,EAAW,CAAC;CACxC"}
|
@@ -5,13 +5,15 @@ export default class MochaManifest extends ScopeManifest {
|
|
5
5
|
globals: "mocha",
|
6
6
|
};
|
7
7
|
parserOptions = {
|
8
|
+
// MUST BE IDENTICAL TO TS PARSER OPTIONS (eventually see if can inherit)
|
8
9
|
parser: null,
|
9
10
|
ecmaFeatures: {
|
10
11
|
jsx: false,
|
11
12
|
globalReturn: true,
|
12
13
|
},
|
13
|
-
jsDocParsingMode: "none"
|
14
|
-
projectService: true,
|
14
|
+
jsDocParsingMode: "none" /* @default(project): "all" | @default: "none" | "type-info" */,
|
15
|
+
projectService: true /* DOC: https://typescript-eslint.io/packages/parser/#projectservice , DOC: https://typescript-eslint.io/troubleshooting/typed-linting/#project-service-issues */,
|
16
|
+
// tsconfigRootDir: import.meta.dirname /* DOC: https://typescript-eslint.io/packages/parser/#tsconfigrootdir ; see `DOC:(USE-CASE), I am inferring that an aboslute path is needed ; DOC:(Node.js: import.meta): https://nodejs.org/api/esm.html#importmetadirname */,
|
15
17
|
warnOnUnsupportedTypeScriptVersion: false,
|
16
18
|
sourceType: "module",
|
17
19
|
ecmaVersion: 2023,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"mocha.js","sourceRoot":"","sources":["../../../src/factory/scopes/mocha.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,CAAC,OAAO,OAAO,aAAc,SAAQ,aAAa;IACtC,eAAe,GAAG;QAChC,MAAM,EAAE,IAAI;QACZ,OAAO,EAAE,OAAO;KACR,CAAC;IACK,aAAa,GAAG;
|
1
|
+
{"version":3,"file":"mocha.js","sourceRoot":"","sources":["../../../src/factory/scopes/mocha.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,CAAC,OAAO,OAAO,aAAc,SAAQ,aAAa;IACtC,eAAe,GAAG;QAChC,MAAM,EAAE,IAAI;QACZ,OAAO,EAAE,OAAO;KACR,CAAC;IACK,aAAa,GAAG;QAC9B,yEAAyE;QACzE,MAAM,EAAE,IAAI;QACZ,YAAY,EAAE;YACZ,GAAG,EAAE,KAAK;YACV,YAAY,EAAE,IAAI;SACnB;QACD,gBAAgB,EAAE,MAAM,CAAC,+DAA+D;QACxF,cAAc,EAAE,IAAI,CAAC,iKAAiK;QACtL,uQAAuQ;QACvQ,kCAAkC,EAAE,KAAK;QACzC,UAAU,EAAE,QAAQ;QACpB,WAAW,EAAE,IAAI;KACT,CAAC;IACK,SAAS,GAAG,EAAW,CAAC;IACxB,QAAQ,GAAG,EAAW,CAAC;CACxC"}
|
@@ -11,8 +11,9 @@ export default class SvelteManifest extends ScopeManifest {
|
|
11
11
|
jsx: false,
|
12
12
|
globalReturn: true,
|
13
13
|
},
|
14
|
-
jsDocParsingMode: "none"
|
15
|
-
projectService: true,
|
14
|
+
jsDocParsingMode: "none" /* @default(project): "all" | @default: "none" | "type-info" */,
|
15
|
+
projectService: true /* DOC: https://typescript-eslint.io/packages/parser/#projectservice , DOC: https://typescript-eslint.io/troubleshooting/typed-linting/#project-service-issues */,
|
16
|
+
// tsconfigRootDir: import.meta.dirname /* DOC: https://typescript-eslint.io/packages/parser/#tsconfigrootdir ; see `DOC:(USE-CASE), I am inferring that an aboslute path is needed ; DOC:(Node.js: import.meta): https://nodejs.org/api/esm.html#importmetadirname */,
|
16
17
|
warnOnUnsupportedTypeScriptVersion: false,
|
17
18
|
sourceType: "module",
|
18
19
|
ecmaVersion: 2023,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"svelte.js","sourceRoot":"","sources":["../../../src/factory/scopes/svelte.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,CAAC,OAAO,OAAO,cAAe,SAAQ,aAA8B;IACxD,eAAe,GAAG;QAChC,MAAM,EAAE,QAAQ;QAChB,OAAO,EAAE,IAAI;KACL,CAAC;IACK,aAAa,GAAG;QAC9B,MAAM,EAAE,IAAI;QACZ,mBAAmB,EAAE,CAAC,SAAS,CAAU;QACzC,YAAY,EAAE;YACZ,GAAG,EAAE,KAAK;YACV,YAAY,EAAE,IAAI;SACnB;QACD,gBAAgB,EAAE,MAAM;
|
1
|
+
{"version":3,"file":"svelte.js","sourceRoot":"","sources":["../../../src/factory/scopes/svelte.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,CAAC,OAAO,OAAO,cAAe,SAAQ,aAA8B;IACxD,eAAe,GAAG;QAChC,MAAM,EAAE,QAAQ;QAChB,OAAO,EAAE,IAAI;KACL,CAAC;IACK,aAAa,GAAG;QAC9B,MAAM,EAAE,IAAI;QACZ,mBAAmB,EAAE,CAAC,SAAS,CAAU;QACzC,YAAY,EAAE;YACZ,GAAG,EAAE,KAAK;YACV,YAAY,EAAE,IAAI;SACnB;QACD,gBAAgB,EAAE,MAAM,CAAC,+DAA+D;QACxF,cAAc,EAAE,IAAI,CAAC,iKAAiK;QACtL,uQAAuQ;QACvQ,kCAAkC,EAAE,KAAK;QACzC,UAAU,EAAE,QAAQ;QACpB,WAAW,EAAE,IAAI;KACT,CAAC;IACK,SAAS,GAAG,EAAE,SAAS,EAAE,eAAe,EAAW,CAAC;IACpD,QAAQ,GAAG,EAAW,CAAC;CACxC"}
|
@@ -5,13 +5,16 @@ export default class TsManifest extends ScopeManifest {
|
|
5
5
|
globals: null,
|
6
6
|
};
|
7
7
|
parserOptions = {
|
8
|
+
// DOC: https://typescript-eslint.io/packages/parser/#configuration
|
9
|
+
// DOC:(USE-CASE): https://typescript-eslint.io/getting-started/typed-linting/
|
8
10
|
parser: null,
|
9
11
|
ecmaFeatures: {
|
10
12
|
jsx: false,
|
11
13
|
globalReturn: true,
|
12
14
|
},
|
13
|
-
jsDocParsingMode: "none"
|
14
|
-
projectService: true,
|
15
|
+
jsDocParsingMode: "none" /* @default(project): "all" | @default: "none" | "type-info" */,
|
16
|
+
projectService: true /* DOC: https://typescript-eslint.io/packages/parser/#projectservice , DOC: https://typescript-eslint.io/troubleshooting/typed-linting/#project-service-issues */,
|
17
|
+
// tsconfigRootDir: import.meta.dirname /* DOC: https://typescript-eslint.io/packages/parser/#tsconfigrootdir ; see `DOC:(USE-CASE), I am inferring that an aboslute path is needed ; DOC:(Node.js: import.meta): https://nodejs.org/api/esm.html#importmetadirname */,
|
15
18
|
warnOnUnsupportedTypeScriptVersion: false,
|
16
19
|
sourceType: "module",
|
17
20
|
ecmaVersion: 2023,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ts.js","sourceRoot":"","sources":["../../../src/factory/scopes/ts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,CAAC,OAAO,OAAO,UAAW,SAAQ,aAAmB;IACzC,eAAe,GAAG;QAChC,MAAM,EAAE,IAAI;QACZ,OAAO,EAAE,IAAI;KACL,CAAC;IACK,aAAa,GAAG;
|
1
|
+
{"version":3,"file":"ts.js","sourceRoot":"","sources":["../../../src/factory/scopes/ts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,CAAC,OAAO,OAAO,UAAW,SAAQ,aAAmB;IACzC,eAAe,GAAG;QAChC,MAAM,EAAE,IAAI;QACZ,OAAO,EAAE,IAAI;KACL,CAAC;IACK,aAAa,GAAG;QAC9B,mEAAmE;QACnE,8EAA8E;QAC9E,MAAM,EAAE,IAAI;QACZ,YAAY,EAAE;YACZ,GAAG,EAAE,KAAK;YACV,YAAY,EAAE,IAAI;SACnB;QACD,gBAAgB,EAAE,MAAM,CAAC,+DAA+D;QACxF,cAAc,EAAE,IAAI,CAAC,iKAAiK;QACtL,uQAAuQ;QACvQ,kCAAkC,EAAE,KAAK;QACzC,UAAU,EAAE,QAAQ;QACpB,WAAW,EAAE,IAAI;KACT,CAAC;IACK,SAAS,GAAG,EAAW,CAAC;IACxB,QAAQ,GAAG,EAAW,CAAC;CACxC"}
|
@@ -5,8 +5,9 @@ export default class YmlManifest extends ScopeManifest {
|
|
5
5
|
globals: null,
|
6
6
|
};
|
7
7
|
parserOptions = {
|
8
|
+
/* DOC: https://github.com/ota-meshi/yaml-eslint-parser?tab=readme-ov-file#advanced-configuration */
|
8
9
|
parser: null,
|
9
|
-
defaultYAMLVersion: "1.2"
|
10
|
+
defaultYAMLVersion: "1.2" /* @default: "1.2" | "1.1" */,
|
10
11
|
};
|
11
12
|
processor = {};
|
12
13
|
language = {};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"yml.js","sourceRoot":"","sources":["../../../src/factory/scopes/yml.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,aAAoB;IAC3C,eAAe,GAAG;QAChC,MAAM,EAAE,KAAK;QACb,OAAO,EAAE,IAAI;KACL,CAAC;IACK,aAAa,GAAG;
|
1
|
+
{"version":3,"file":"yml.js","sourceRoot":"","sources":["../../../src/factory/scopes/yml.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,aAAoB;IAC3C,eAAe,GAAG;QAChC,MAAM,EAAE,KAAK;QACb,OAAO,EAAE,IAAI;KACL,CAAC;IACK,aAAa,GAAG;QAC9B,oGAAoG;QACpG,MAAM,EAAE,IAAI;QACZ,kBAAkB,EAAE,KAAK,CAAC,6BAA6B;KAC/C,CAAC;IACK,SAAS,GAAG,EAAW,CAAC;IACxB,QAAQ,GAAG,EAAW,CAAC;CACxC"}
|
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": "@eslinted/core",
|
6
|
-
"version": "18.
|
6
|
+
"version": "18.4.1",
|
7
7
|
"repository": "github:jimmy-zhening-luo/linted-core",
|
8
8
|
"private": false,
|
9
9
|
"engineStrict": true,
|
package/tsconfig.json
CHANGED
@@ -1,35 +1,35 @@
|
|
1
1
|
{
|
2
|
-
"display": "tsc@
|
2
|
+
"display": "tsc@508.0.0",
|
3
3
|
"$schema": "https://json.schemastore.org/tsconfig",
|
4
4
|
"$help": "https://www.typescriptlang.org/tsconfig/#quick-nav-Top%20Level",
|
5
5
|
"include": [
|
6
6
|
"*.config.ts",
|
7
7
|
"src/**/*.ts",
|
8
|
-
"tests/**/*.ts",
|
9
8
|
"typings/**/*.d.ts",
|
10
9
|
],
|
11
10
|
"exclude": [],
|
12
11
|
"compilerOptions": {
|
13
|
-
// #region
|
12
|
+
// #region Typecheck
|
14
13
|
"allowUnreachableCode": false,
|
15
14
|
"allowUnusedLabels": false,
|
16
|
-
"alwaysStrict": true
|
15
|
+
// "alwaysStrict": true /* @default true if `strict`, else false */,
|
17
16
|
"exactOptionalPropertyTypes": true,
|
18
17
|
"noFallthroughCasesInSwitch": true,
|
19
|
-
"noImplicitAny": true
|
18
|
+
// "noImplicitAny": true /* @default true if `strict`, else false */,
|
20
19
|
"noImplicitOverride": true,
|
21
20
|
"noImplicitReturns": true,
|
22
|
-
"noImplicitThis": true
|
21
|
+
// "noImplicitThis": true /* @default true if `strict`, else false */,
|
23
22
|
"noPropertyAccessFromIndexSignature": true,
|
24
23
|
"noUncheckedIndexedAccess": true,
|
25
24
|
"noUnusedLocals": true,
|
26
25
|
"noUnusedParameters": true,
|
27
|
-
"strict": true
|
28
|
-
"strictBindCallApply": true
|
29
|
-
"
|
30
|
-
"
|
31
|
-
"
|
32
|
-
"
|
26
|
+
"strict": true /* INFO:[CONTROLS] alwaysStrict | noImplicitAny | noImplicitThis | strict.* | useUnknownInCatchVariables */,
|
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
33
|
// #endregion
|
34
34
|
//
|
35
35
|
// #region Modules
|
@@ -42,11 +42,13 @@
|
|
42
42
|
"moduleResolution": "bundler",
|
43
43
|
// "moduleSuffixes": [],
|
44
44
|
// "noResolve": true,
|
45
|
+
// "noUncheckedSideEffectImports": true,
|
45
46
|
// "paths": { "*": ["node_modules/*"] },
|
46
47
|
// "resolveJsonModule": true,
|
47
48
|
// "resolvePackageJsonExports": true,
|
48
49
|
// "resolvePackageJsonImports": true,
|
49
|
-
"
|
50
|
+
"rewriteRelativeImportExtensions": true,
|
51
|
+
// "rootDir": "src",
|
50
52
|
// "rootDirs": [],
|
51
53
|
// "typeRoots": [],
|
52
54
|
"types": [
|
@@ -58,7 +60,7 @@
|
|
58
60
|
//
|
59
61
|
// #region Emit
|
60
62
|
"declaration": true,
|
61
|
-
"declarationDir": "
|
63
|
+
// "declarationDir": "",
|
62
64
|
"declarationMap": true,
|
63
65
|
// "downlevelIteration": true,
|
64
66
|
// "emitBOM": true,
|
@@ -74,7 +76,7 @@
|
|
74
76
|
"outDir": "dist",
|
75
77
|
// "outFile": "./",
|
76
78
|
// "preserveConstEnums": true,
|
77
|
-
"removeComments": true,
|
79
|
+
// "removeComments": true,
|
78
80
|
"sourceMap": true,
|
79
81
|
// "sourceRoot": "",
|
80
82
|
// "stripInternal": true,
|
@@ -93,7 +95,8 @@
|
|
93
95
|
//
|
94
96
|
// #region Interop
|
95
97
|
"allowSyntheticDefaultImports": true,
|
96
|
-
"
|
98
|
+
// "erasableSyntaxOnly": true,
|
99
|
+
// "esModuleInterop": true,
|
97
100
|
"forceConsistentCasingInFileNames": true,
|
98
101
|
// "isolatedDeclarations": false,
|
99
102
|
// "isolatedModules": true,
|
@@ -112,11 +115,12 @@
|
|
112
115
|
"es2023",
|
113
116
|
/* {CONFIGURE} */
|
114
117
|
],
|
118
|
+
// "libReplacement": true /* @default: true | INFO: in the future, @default may become false */,
|
115
119
|
// "moduleDetection": "auto",
|
116
120
|
// "noLib": true,
|
117
121
|
// "reactNamespace": "",
|
118
122
|
"target": "es2022",
|
119
|
-
// "useDefineForClassFields": true /* @default
|
123
|
+
// "useDefineForClassFields": true /* @default true if `target` > `es2022`, else false*/,
|
120
124
|
// #endregion
|
121
125
|
//
|
122
126
|
// #region Diagnostic
|
@@ -135,8 +139,8 @@
|
|
135
139
|
// "disableReferencedProjectLoad": true,
|
136
140
|
// "disableSolutionSearching": true,
|
137
141
|
// "disableSourceOfProjectReferenceRedirect": true,
|
138
|
-
"incremental": true
|
139
|
-
"tsBuildInfoFile": "
|
142
|
+
"incremental": true /* @default true if `composite`, else false */,
|
143
|
+
// "tsBuildInfoFile": "",
|
140
144
|
// #endregion
|
141
145
|
//
|
142
146
|
// #region Print
|
@@ -145,8 +149,8 @@
|
|
145
149
|
// "pretty": true,
|
146
150
|
// #endregion
|
147
151
|
//
|
148
|
-
// #region
|
149
|
-
"skipLibCheck":
|
152
|
+
// #region Complete
|
153
|
+
// "skipLibCheck": true,
|
150
154
|
// #endregion
|
151
155
|
},
|
152
156
|
}
|
package/.gitattributes
DELETED