linted 12.3.1 → 13.0.0
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/bundle/index.d.ts +4 -13
- package/dist/bundle/index.d.ts.map +1 -1
- package/dist/bundle/index.js +117 -136
- package/dist/bundle/index.js.map +1 -1
- package/package.json +1 -1
package/dist/bundle/index.d.ts
CHANGED
@@ -1,7 +1,6 @@
|
|
1
|
-
import type Ruleset from "./config/default/ruleset/base/Ruleset.js";
|
2
|
-
import { JsOption, TsOption, SvelteOption, HtmlOption, JestOption, JsoncOption, JsonOption, YmlOption } from "./config/default/Options.js";
|
3
1
|
declare const scopes: readonly ["js", "ts", "svelte", "html", "jest", "jsonc", "json", "yml"];
|
4
2
|
declare type Scopes = typeof scopes[number];
|
3
|
+
import { JsOption, TsOption, SvelteOption, HtmlOption, JestOption, JsoncOption, JsonOption, YmlOption } from "./config/default/Options.js";
|
5
4
|
declare const OptionsConstructor: {
|
6
5
|
readonly js: typeof JsOption;
|
7
6
|
readonly ts: typeof TsOption;
|
@@ -12,17 +11,9 @@ declare const OptionsConstructor: {
|
|
12
11
|
readonly json: typeof JsonOption;
|
13
12
|
readonly yml: typeof YmlOption;
|
14
13
|
};
|
15
|
-
declare
|
16
|
-
[S in Scopes]:
|
14
|
+
declare type Options = {
|
15
|
+
[S in Scopes]: InstanceType<typeof OptionsConstructor[S]>["body"];
|
17
16
|
};
|
18
|
-
export default
|
19
|
-
readonly options: {
|
20
|
-
[S in Scopes]: InstanceType<typeof OptionsConstructor[S]>["body"];
|
21
|
-
};
|
22
|
-
readonly rulesets: typeof Rulesets;
|
23
|
-
constructor(files?: Partial<Record<Scopes, string[]>>, override?: Partial<Record<`override${Capitalize<Scopes>}`, IRule>>);
|
24
|
-
get configs(): Array<IRules & this["options"][Scopes]>;
|
25
|
-
protected getLanguageConfigs<S extends Scopes>(scope: S): Array<IRules & this["options"][S]>;
|
26
|
-
}
|
17
|
+
export default function (files?: Partial<Record<Scopes, string[]>>, override?: Partial<Record<`override${Capitalize<Scopes>}`, IRule>>): Array<IRules & Options[Scopes]>;
|
27
18
|
export {};
|
28
19
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/bundle/index.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/bundle/index.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,MAAM,yEASF,CAAC;AAEX,OAAO,MAAM,MAAM,GAAG,OAAO,MAAM,CAAC,MAAM,CAAC,CAAC;AAE5C,OAAO,EACL,QAAQ,EACR,QAAQ,EACR,YAAY,EACZ,UAAU,EACV,UAAU,EACV,WAAW,EACX,UAAU,EACV,SAAS,EACV,MAAM,6BAA6B,CAAC;AAErC,QAAA,MAAM,kBAAkB;;;;;;;;;CAavB,CAAC;AAqFF,OAAO,MAAM,OAAO,GAAG;KACpB,CAAC,IAAI,MAAM,GAAG,YAAY,CACzB,OAAO,kBAAkB,CAAC,CAAC,CAAC,CAC7B,CAAC,MAAM,CAAC;CACV,CAAC;AAEF,MAAM,CAAC,OAAO,WACZ,KAAK,GAAE,OAAO,CACZ,MAAM,CACJ,MAAM,EAEN,MAAM,EAAE,CACT,CACG,EACN,QAAQ,GAAE,OAAO,CACf,MAAM,CACJ,WACE,UAAU,CAAC,MAAM,CACnB,EAAE,EAEF,KAAK,CACN,CACG,GACL,KAAK,CACJ,MAAM,GACN,OAAO,CAAC,MAAM,CAAC,CAChB,CAqKF"}
|
package/dist/bundle/index.js
CHANGED
@@ -1,17 +1,3 @@
|
|
1
|
-
import stylistic from "@stylistic/eslint-plugin";
|
2
|
-
import ts from "@typescript-eslint/eslint-plugin";
|
3
|
-
import svelte from "eslint-plugin-svelte";
|
4
|
-
import html from "@html-eslint/eslint-plugin";
|
5
|
-
import jest from "eslint-plugin-jest";
|
6
|
-
import jsonc from "eslint-plugin-jsonc";
|
7
|
-
import yml from "eslint-plugin-yml";
|
8
|
-
import tsParser from "@typescript-eslint/parser";
|
9
|
-
import svelteParser from "svelte-eslint-parser";
|
10
|
-
import htmlParser from "@html-eslint/parser";
|
11
|
-
import jsoncParser from "jsonc-eslint-parser";
|
12
|
-
import ymlParser from "yaml-eslint-parser";
|
13
|
-
import { JsOption, TsOption, SvelteOption, HtmlOption, JestOption, JsoncOption, JsonOption, YmlOption, } from "./config/default/Options.js";
|
14
|
-
import { JsRuleset, TsRuleset, SvelteRuleset, HtmlRuleset, JestRuleset, JsoncRuleset, JsonRuleset, YmlRuleset, } from "./config/default/Rulesets.js";
|
15
1
|
const scopes = [
|
16
2
|
"js",
|
17
3
|
"ts",
|
@@ -22,6 +8,7 @@ const scopes = [
|
|
22
8
|
"json",
|
23
9
|
"yml",
|
24
10
|
];
|
11
|
+
import { JsOption, TsOption, SvelteOption, HtmlOption, JestOption, JsoncOption, JsonOption, YmlOption, } from "./config/default/Options.js";
|
25
12
|
const OptionsConstructor = {
|
26
13
|
js: JsOption,
|
27
14
|
ts: TsOption,
|
@@ -32,6 +19,7 @@ const OptionsConstructor = {
|
|
32
19
|
json: JsonOption,
|
33
20
|
yml: YmlOption,
|
34
21
|
};
|
22
|
+
import { JsRuleset, TsRuleset, SvelteRuleset, HtmlRuleset, JestRuleset, JsoncRuleset, JsonRuleset, YmlRuleset, } from "./config/default/Rulesets.js";
|
35
23
|
const Rulesets = {
|
36
24
|
js: JsRuleset,
|
37
25
|
ts: TsRuleset,
|
@@ -42,6 +30,13 @@ const Rulesets = {
|
|
42
30
|
json: JsonRuleset,
|
43
31
|
yml: YmlRuleset,
|
44
32
|
};
|
33
|
+
import stylistic from "@stylistic/eslint-plugin";
|
34
|
+
import ts from "@typescript-eslint/eslint-plugin";
|
35
|
+
import svelte from "eslint-plugin-svelte";
|
36
|
+
import html from "@html-eslint/eslint-plugin";
|
37
|
+
import jest from "eslint-plugin-jest";
|
38
|
+
import jsonc from "eslint-plugin-jsonc";
|
39
|
+
import yml from "eslint-plugin-yml";
|
45
40
|
const Plugin = {
|
46
41
|
js: { "@stylistic": stylistic },
|
47
42
|
ts: {
|
@@ -63,6 +58,11 @@ const Plugin = {
|
|
63
58
|
json: { jsonc },
|
64
59
|
yml: { yml },
|
65
60
|
};
|
61
|
+
import tsParser from "@typescript-eslint/parser";
|
62
|
+
import svelteParser from "svelte-eslint-parser";
|
63
|
+
import htmlParser from "@html-eslint/parser";
|
64
|
+
import jsoncParser from "jsonc-eslint-parser";
|
65
|
+
import ymlParser from "yaml-eslint-parser";
|
66
66
|
const Parser = {
|
67
67
|
ts: tsParser,
|
68
68
|
svelte: svelteParser,
|
@@ -72,132 +72,113 @@ const Parser = {
|
|
72
72
|
json: jsoncParser,
|
73
73
|
yml: ymlParser,
|
74
74
|
};
|
75
|
-
export default
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
.
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
ts
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
html
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
jest
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
jsonc
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
json
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
yml
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
yml: Rulesets
|
170
|
-
.yml
|
171
|
-
.override(override
|
172
|
-
.overrideYml),
|
173
|
-
};
|
174
|
-
}
|
175
|
-
catch (e) {
|
176
|
-
throw new Error(`Lint: ctor`, { cause: e });
|
177
|
-
}
|
178
|
-
}
|
179
|
-
get configs() {
|
75
|
+
export default function (files = {}, override = {}) {
|
76
|
+
try {
|
77
|
+
const options = {
|
78
|
+
js: new OptionsConstructor
|
79
|
+
.js(Plugin
|
80
|
+
.js, ...files
|
81
|
+
.js
|
82
|
+
?? [])
|
83
|
+
.body,
|
84
|
+
ts: new OptionsConstructor
|
85
|
+
.ts(Plugin
|
86
|
+
.ts, Parser
|
87
|
+
.ts, ...files
|
88
|
+
.ts
|
89
|
+
?? [])
|
90
|
+
.body,
|
91
|
+
svelte: new OptionsConstructor
|
92
|
+
.svelte(Plugin
|
93
|
+
.svelte, Parser
|
94
|
+
.svelte, Parser
|
95
|
+
.ts, ...files
|
96
|
+
.svelte
|
97
|
+
?? [])
|
98
|
+
.body,
|
99
|
+
html: new OptionsConstructor
|
100
|
+
.html(Plugin
|
101
|
+
.html, Parser
|
102
|
+
.html, ...files
|
103
|
+
.html
|
104
|
+
?? [])
|
105
|
+
.body,
|
106
|
+
jest: new OptionsConstructor
|
107
|
+
.jest(Plugin
|
108
|
+
.jest, Parser
|
109
|
+
.jest, ...files
|
110
|
+
.jest
|
111
|
+
?? [])
|
112
|
+
.body,
|
113
|
+
jsonc: new OptionsConstructor
|
114
|
+
.jsonc(Plugin
|
115
|
+
.jsonc, Parser
|
116
|
+
.jsonc, ...files
|
117
|
+
.jsonc
|
118
|
+
?? [])
|
119
|
+
.body,
|
120
|
+
json: new OptionsConstructor
|
121
|
+
.json(Plugin
|
122
|
+
.json, Parser
|
123
|
+
.json, ...files
|
124
|
+
.json
|
125
|
+
?? [])
|
126
|
+
.body,
|
127
|
+
yml: new OptionsConstructor
|
128
|
+
.yml(Plugin
|
129
|
+
.yml, Parser
|
130
|
+
.yml, ...files
|
131
|
+
.yml
|
132
|
+
?? [])
|
133
|
+
.body,
|
134
|
+
};
|
135
|
+
const rulesets = {
|
136
|
+
js: Rulesets
|
137
|
+
.js
|
138
|
+
.override(override
|
139
|
+
.overrideJs),
|
140
|
+
ts: Rulesets
|
141
|
+
.ts
|
142
|
+
.override(override
|
143
|
+
.overrideTs),
|
144
|
+
svelte: Rulesets
|
145
|
+
.svelte
|
146
|
+
.override(override
|
147
|
+
.overrideSvelte),
|
148
|
+
html: Rulesets
|
149
|
+
.html
|
150
|
+
.override(override
|
151
|
+
.overrideHtml),
|
152
|
+
jest: Rulesets
|
153
|
+
.jest
|
154
|
+
.override(override
|
155
|
+
.overrideJest),
|
156
|
+
jsonc: Rulesets
|
157
|
+
.jsonc
|
158
|
+
.override(override
|
159
|
+
.overrideJsonc),
|
160
|
+
json: Rulesets
|
161
|
+
.json
|
162
|
+
.override(override
|
163
|
+
.overrideJson),
|
164
|
+
yml: Rulesets
|
165
|
+
.yml
|
166
|
+
.override(override
|
167
|
+
.overrideYml),
|
168
|
+
};
|
180
169
|
return scopes
|
181
|
-
.map(scope =>
|
182
|
-
.
|
183
|
-
.flat();
|
184
|
-
}
|
185
|
-
getLanguageConfigs(scope) {
|
186
|
-
const { options, rulesets, } = this;
|
187
|
-
const option = options[scope];
|
188
|
-
const ruleset = rulesets[scope];
|
189
|
-
return option
|
190
|
-
.files
|
191
|
-
.length < 1
|
192
|
-
? []
|
193
|
-
: ruleset
|
194
|
-
.flat
|
195
|
-
.map(rules => {
|
170
|
+
.map(scope => options[scope].files.length > 0
|
171
|
+
? rulesets[scope].flat.map(rules => {
|
196
172
|
return {
|
197
173
|
rules,
|
198
|
-
...
|
174
|
+
...options[scope],
|
199
175
|
};
|
200
|
-
})
|
176
|
+
})
|
177
|
+
: [])
|
178
|
+
.flat();
|
179
|
+
}
|
180
|
+
catch (e) {
|
181
|
+
throw new Error(`linted(): Caught exception.`, { cause: e });
|
201
182
|
}
|
202
183
|
}
|
203
184
|
//# sourceMappingURL=index.js.map
|
package/dist/bundle/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/bundle/index.ts"],"names":[],"mappings":"AAAA,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/bundle/index.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,GAAG;IACb,IAAI;IACJ,IAAI;IACJ,QAAQ;IACR,MAAM;IACN,MAAM;IACN,OAAO;IACP,MAAM;IACN,KAAK;CACG,CAAC;AAIX,OAAO,EACL,QAAQ,EACR,QAAQ,EACR,YAAY,EACZ,UAAU,EACV,UAAU,EACV,WAAW,EACX,UAAU,EACV,SAAS,GACV,MAAM,6BAA6B,CAAC;AAErC,MAAM,kBAAkB,GAAG;IACzB,EAAE,EAAE,QAAQ;IACZ,EAAE,EAAE,QAAQ;IACZ,MAAM,EAAE,YAAY;IACpB,IAAI,EAAE,UAAU;IAChB,IAAI,EAAE,UAAU;IAChB,KAAK,EAAE,WAAW;IAClB,IAAI,EAAE,UAAU;IAChB,GAAG,EAAE,SAAS;CAKf,CAAC;AAGF,OAAO,EACL,SAAS,EACT,SAAS,EACT,aAAa,EACb,WAAW,EACX,WAAW,EACX,YAAY,EACZ,WAAW,EACX,UAAU,GACX,MAAM,8BAA8B,CAAC;AAEtC,MAAM,QAAQ,GAIV;IACF,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,MAAM,EAAE,aAAa;IACrB,IAAI,EAAE,WAAW;IACjB,IAAI,EAAE,WAAW;IACjB,KAAK,EAAE,YAAY;IACnB,IAAI,EAAE,WAAW;IACjB,GAAG,EAAE,UAAU;CAChB,CAAC;AAEF,OAAO,SAAS,MAAM,0BAA0B,CAAC;AACjD,OAAO,EAAE,MAAM,kCAAkC,CAAC;AAClD,OAAO,MAAM,MAAM,sBAAsB,CAAC;AAC1C,OAAO,IAAI,MAAM,4BAA4B,CAAC;AAC9C,OAAO,IAAI,MAAM,oBAAoB,CAAC;AACtC,OAAO,KAAK,MAAM,qBAAqB,CAAC;AACxC,OAAO,GAAG,MAAM,mBAAmB,CAAC;AAEpC,MAAM,MAAM,GAAG;IACb,EAAE,EAAE,EAAE,YAAY,EAAE,SAAS,EAAE;IAC/B,EAAE,EAAE;QACF,YAAY,EAAE,SAAS;QACvB,oBAAoB,EAAE,EAAE;KACzB;IACD,MAAM,EAAE;QACN,YAAY,EAAE,SAAS;QACvB,oBAAoB,EAAE,EAAE;QACxB,MAAM;KACP;IACD,IAAI,EAAE,EAAE,cAAc,EAAE,IAAI,EAAE;IAC9B,IAAI,EAAE;QACJ,YAAY,EAAE,SAAS;QACvB,oBAAoB,EAAE,EAAE;QACxB,IAAI;KACL;IACD,KAAK,EAAE,EAAE,KAAK,EAAE;IAChB,IAAI,EAAE,EAAE,KAAK,EAAE;IACf,GAAG,EAAE,EAAE,GAAG,EAAE;CAKb,CAAC;AAEF,OAAO,QAAQ,MAAM,2BAA2B,CAAC;AACjD,OAAO,YAAY,MAAM,sBAAsB,CAAC;AAChD,OAAO,UAAU,MAAM,qBAAqB,CAAC;AAC7C,OAAO,WAAW,MAAM,qBAAqB,CAAC;AAC9C,OAAO,SAAS,MAAM,oBAAoB,CAAC;AAE3C,MAAM,MAAM,GAAG;IACb,EAAE,EAAE,QAAQ;IACZ,MAAM,EAAE,YAAY;IACpB,IAAI,EAAE,UAAU;IAChB,IAAI,EAAE,QAAQ;IACd,KAAK,EAAE,WAAW;IAClB,IAAI,EAAE,WAAW;IACjB,GAAG,EAAE,SAAS;CAOf,CAAC;AAQF,MAAM,CAAC,OAAO,WACZ,QAMI,EAAE,EACN,WAQI,EAAE;IAKN,IAAI,CAAC;QACH,MAAM,OAAO,GAAY;YACvB,EAAE,EAAE,IAAI,kBAAkB;iBACvB,EAAE,CACD,MAAM;iBACH,EAAE,EACL,GAAG,KAAK;iBACL,EAAE;mBACA,EAAE,CACR;iBACA,IAAI;YACP,EAAE,EAAE,IAAI,kBAAkB;iBACvB,EAAE,CACD,MAAM;iBACH,EAAE,EACL,MAAM;iBACH,EAAE,EACL,GAAG,KAAK;iBACL,EAAE;mBACA,EAAE,CACR;iBACA,IAAI;YACP,MAAM,EAAE,IAAI,kBAAkB;iBAC3B,MAAM,CACL,MAAM;iBACH,MAAM,EACT,MAAM;iBACH,MAAM,EACT,MAAM;iBACH,EAAE,EACL,GAAG,KAAK;iBACL,MAAM;mBACJ,EAAE,CACR;iBACA,IAAI;YACP,IAAI,EAAE,IAAI,kBAAkB;iBACzB,IAAI,CACH,MAAM;iBACH,IAAI,EACP,MAAM;iBACH,IAAI,EACP,GAAG,KAAK;iBACL,IAAI;mBACF,EAAE,CACR;iBACA,IAAI;YACP,IAAI,EAAE,IAAI,kBAAkB;iBACzB,IAAI,CACH,MAAM;iBACH,IAAI,EACP,MAAM;iBACH,IAAI,EACP,GAAG,KAAK;iBACL,IAAI;mBACF,EAAE,CACR;iBACA,IAAI;YACP,KAAK,EAAE,IAAI,kBAAkB;iBAC1B,KAAK,CACJ,MAAM;iBACH,KAAK,EACR,MAAM;iBACH,KAAK,EACR,GAAG,KAAK;iBACL,KAAK;mBACH,EAAE,CACR;iBACA,IAAI;YACP,IAAI,EAAE,IAAI,kBAAkB;iBACzB,IAAI,CACH,MAAM;iBACH,IAAI,EACP,MAAM;iBACH,IAAI,EACP,GAAG,KAAK;iBACL,IAAI;mBACF,EAAE,CACR;iBACA,IAAI;YACP,GAAG,EAAE,IAAI,kBAAkB;iBACxB,GAAG,CACF,MAAM;iBACH,GAAG,EACN,MAAM;iBACH,GAAG,EACN,GAAG,KAAK;iBACL,GAAG;mBACD,EAAE,CACR;iBACA,IAAI;SACR,CAAC;QACF,MAAM,QAAQ,GAAoB;YAChC,EAAE,EAAE,QAAQ;iBACT,EAAE;iBACF,QAAQ,CACP,QAAQ;iBACL,UAAU,CACd;YACH,EAAE,EAAE,QAAQ;iBACT,EAAE;iBACF,QAAQ,CACP,QAAQ;iBACL,UAAU,CACd;YACH,MAAM,EAAE,QAAQ;iBACb,MAAM;iBACN,QAAQ,CACP,QAAQ;iBACL,cAAc,CAClB;YACH,IAAI,EAAE,QAAQ;iBACX,IAAI;iBACJ,QAAQ,CACP,QAAQ;iBACL,YAAY,CAChB;YACH,IAAI,EAAE,QAAQ;iBACX,IAAI;iBACJ,QAAQ,CACP,QAAQ;iBACL,YAAY,CAChB;YACH,KAAK,EAAE,QAAQ;iBACZ,KAAK;iBACL,QAAQ,CACP,QAAQ;iBACL,aAAa,CACjB;YACH,IAAI,EAAE,QAAQ;iBACX,IAAI;iBACJ,QAAQ,CACP,QAAQ;iBACL,YAAY,CAChB;YACH,GAAG,EAAE,QAAQ;iBACV,GAAG;iBACH,QAAQ,CACP,QAAQ;iBACL,WAAW,CACf;SACJ,CAAC;QAEF,OAAO,MAAM;aACV,GAAG,CACF,KAAK,CAAC,EAAE,CACN,OAAO,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC;YAC7B,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,GAAG,CACxB,KAAK,CAAC,EAAE;gBACN,OAAO;oBACL,KAAK;oBACL,GAAG,OAAO,CAAC,KAAK,CAAC;iBAClB,CAAC;YACJ,CAAC,CACF;YACD,CAAC,CAAC,EAAE,CACT;aACA,IAAI,EAAE,CAAC;IACZ,CAAC;IACD,OAAO,CAAC,EAAE,CAAC;QACT,MAAM,IAAI,KAAK,CACb,6BAA6B,EAC7B,EAAE,KAAK,EAAE,CAAC,EAAE,CACb,CAAC;IACJ,CAAC;AACH,CAAC"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "linted",
|
3
|
-
"version": "
|
3
|
+
"version": "13.0.0",
|
4
4
|
"description": "Zero-config ESLint flat config factory for (strict, agglutinative) entire-stack formatting and linting: TypeScript, JavaScript, Svelte, HTML, (Tailwind) CSS, Jest, JSON(C), and sadly YAML.",
|
5
5
|
"keywords": [
|
6
6
|
"eslint",
|