linted 26.2.0-rc.0 → 26.2.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/plugins.d.ts.map +1 -1
- package/dist/plugins.js +4 -2
- package/dist/plugins.js.map +1 -1
- package/package.json +3 -3
- package/src/plugins.ts +4 -2
package/dist/plugins.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"plugins.d.ts","sourceRoot":"","sources":["../src/plugins.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"plugins.d.ts","sourceRoot":"","sources":["../src/plugins.ts"],"names":[],"mappings":"AAWA,eAAO,MAAM,OAAO,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,MAAM,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAWjF,CAAC"}
|
package/dist/plugins.js
CHANGED
@@ -1,20 +1,22 @@
|
|
1
1
|
import stylistic from "@stylistic/eslint-plugin";
|
2
2
|
import { plugin as typescript_eslint } from "typescript-eslint";
|
3
|
-
import svelte from "eslint-plugin-svelte";
|
4
3
|
import mocha from "eslint-plugin-mocha";
|
5
4
|
import chai_friendly from "eslint-plugin-chai-friendly";
|
6
5
|
import chai_expect from "eslint-plugin-chai-expect";
|
6
|
+
import svelte from "eslint-plugin-svelte";
|
7
7
|
import html_eslint from "@html-eslint/eslint-plugin";
|
8
|
+
import css from "@eslint/css";
|
8
9
|
import jsonc from "eslint-plugin-jsonc";
|
9
10
|
import yml from "eslint-plugin-yml";
|
10
11
|
export const plugins = {
|
11
12
|
"@stylistic": stylistic,
|
12
13
|
"@typescript-eslint": typescript_eslint,
|
13
|
-
svelte,
|
14
14
|
mocha,
|
15
15
|
"chai-friendly": chai_friendly,
|
16
16
|
"chai-expect": chai_expect,
|
17
|
+
svelte,
|
17
18
|
"@html-eslint": html_eslint,
|
19
|
+
css,
|
18
20
|
jsonc,
|
19
21
|
yml,
|
20
22
|
};
|
package/dist/plugins.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"plugins.js","sourceRoot":"","sources":["../src/plugins.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,0BAA0B,CAAC;AACjD,OAAO,EAAE,MAAM,IAAI,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAChE,OAAO,
|
1
|
+
{"version":3,"file":"plugins.js","sourceRoot":"","sources":["../src/plugins.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,0BAA0B,CAAC;AACjD,OAAO,EAAE,MAAM,IAAI,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAChE,OAAO,KAAK,MAAM,qBAAqB,CAAC;AACxC,OAAO,aAAa,MAAM,6BAA6B,CAAC;AACxD,OAAO,WAAW,MAAM,2BAA2B,CAAC;AACpD,OAAO,MAAM,MAAM,sBAAsB,CAAC;AAC1C,OAAO,WAAW,MAAM,4BAA4B,CAAC;AACrD,OAAO,GAAG,MAAM,aAAa,CAAC;AAC9B,OAAO,KAAK,MAAM,qBAAqB,CAAC;AACxC,OAAO,GAAG,MAAM,mBAAmB,CAAC;AAEpC,MAAM,CAAC,MAAM,OAAO,GAAkE;IACpF,YAAY,EAAE,SAAS;IACvB,oBAAoB,EAAE,iBAAiB;IACvC,KAAK;IACL,eAAe,EAAE,aAAa;IAC9B,aAAa,EAAE,WAAW;IAC1B,MAAM;IACN,cAAc,EAAE,WAAW;IAC3B,GAAG;IACH,KAAK;IACL,GAAG;CACJ,CAAC"}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"$template": "22.13.7",
|
3
3
|
"name": "linted",
|
4
|
-
"version": "26.2.0
|
4
|
+
"version": "26.2.0",
|
5
5
|
"description": "ESLint mono-plugin bundler with strict, opinionated defaults for (Stylistic) JavaScript, TypeScript, Svelte, HTML, Tailwind/CSS, JSON, JSONC, YAML, and Mocha.",
|
6
6
|
"repository": "github:jimmy-zhening-luo/linted",
|
7
7
|
"license": "MIT",
|
@@ -30,8 +30,8 @@
|
|
30
30
|
},
|
31
31
|
"dependencies": {
|
32
32
|
"@eslint/css": "0.2.0",
|
33
|
-
"@eslinted/core": "
|
34
|
-
"@eslinted/defaults": "5.
|
33
|
+
"@eslinted/core": "16.0.0",
|
34
|
+
"@eslinted/defaults": "5.2.0",
|
35
35
|
"@html-eslint/eslint-plugin": "0.34.0",
|
36
36
|
"@html-eslint/parser": "0.34.0",
|
37
37
|
"@stylistic/eslint-plugin": "3.0.1",
|
package/src/plugins.ts
CHANGED
@@ -1,21 +1,23 @@
|
|
1
1
|
import stylistic from "@stylistic/eslint-plugin";
|
2
2
|
import { plugin as typescript_eslint } from "typescript-eslint";
|
3
|
-
import svelte from "eslint-plugin-svelte";
|
4
3
|
import mocha from "eslint-plugin-mocha";
|
5
4
|
import chai_friendly from "eslint-plugin-chai-friendly";
|
6
5
|
import chai_expect from "eslint-plugin-chai-expect";
|
6
|
+
import svelte from "eslint-plugin-svelte";
|
7
7
|
import html_eslint from "@html-eslint/eslint-plugin";
|
8
|
+
import css from "@eslint/css";
|
8
9
|
import jsonc from "eslint-plugin-jsonc";
|
9
10
|
import yml from "eslint-plugin-yml";
|
10
11
|
|
11
12
|
export const plugins: Readonly<Record<string, Partial<Record<"configs", unknown>>>> = {
|
12
13
|
"@stylistic": stylistic,
|
13
14
|
"@typescript-eslint": typescript_eslint,
|
14
|
-
svelte,
|
15
15
|
mocha,
|
16
16
|
"chai-friendly": chai_friendly,
|
17
17
|
"chai-expect": chai_expect,
|
18
|
+
svelte,
|
18
19
|
"@html-eslint": html_eslint,
|
20
|
+
css,
|
19
21
|
jsonc,
|
20
22
|
yml,
|
21
23
|
};
|