@schoero/configs 0.0.0-beta.30 → 0.0.0-beta.32
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/eslint/index.js +3 -1
- package/package.json +11 -11
package/eslint/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ignore } from "./ignore.js";
|
|
2
|
+
import { imports } from "./imports.js";
|
|
2
3
|
import { json } from "./json.js";
|
|
3
4
|
import { markdown } from "./markdown.js";
|
|
4
5
|
import { typescript } from "./typescript.js";
|
|
@@ -8,6 +9,7 @@ import { yaml } from "./yaml.js";
|
|
|
8
9
|
|
|
9
10
|
export {
|
|
10
11
|
ignore,
|
|
12
|
+
imports,
|
|
11
13
|
json,
|
|
12
14
|
markdown,
|
|
13
15
|
typescript,
|
|
@@ -17,6 +19,7 @@ export {
|
|
|
17
19
|
|
|
18
20
|
export default [
|
|
19
21
|
...ignore,
|
|
22
|
+
...imports,
|
|
20
23
|
...json,
|
|
21
24
|
...yaml,
|
|
22
25
|
...typescript,
|
|
@@ -24,7 +27,6 @@ export default [
|
|
|
24
27
|
...markdown
|
|
25
28
|
];
|
|
26
29
|
|
|
27
|
-
export { imports } from "./imports.js";
|
|
28
30
|
export { javascript } from "./javascript.js";
|
|
29
31
|
export { jsdoc } from "./jsdoc.js";
|
|
30
32
|
export { jsx } from "./jsx.js";
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.0.0-beta.
|
|
2
|
+
"version": "0.0.0-beta.32",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"name": "@schoero/configs",
|
|
5
5
|
"description": "",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@cspell/dict-companies": "^3.0.31",
|
|
43
43
|
"@cspell/dict-css": "^4.0.12",
|
|
44
44
|
"@cspell/dict-de-ch": "^1.2.0",
|
|
45
|
-
"@cspell/dict-en_us": "^4.3.
|
|
45
|
+
"@cspell/dict-en_us": "^4.3.17",
|
|
46
46
|
"@cspell/dict-fr-fr": "^2.2.2",
|
|
47
47
|
"@cspell/dict-fullstack": "^3.1.5",
|
|
48
48
|
"@cspell/dict-html": "^4.0.5",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@cspell/dict-markdown": "^2.0.1",
|
|
53
53
|
"@cspell/dict-node": "^4.0.3",
|
|
54
54
|
"@cspell/dict-npm": "^5.0.15",
|
|
55
|
-
"@cspell/dict-public-licenses": "^2.0.
|
|
55
|
+
"@cspell/dict-public-licenses": "^2.0.6",
|
|
56
56
|
"@cspell/dict-software-terms": "^3.3.18",
|
|
57
57
|
"@cspell/dict-typescript": "^3.1.2",
|
|
58
58
|
"@stylistic/eslint-plugin-js": "^1.6.2",
|
|
@@ -61,35 +61,35 @@
|
|
|
61
61
|
"@stylistic/eslint-plugin-ts": "^1.6.2",
|
|
62
62
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
63
63
|
"@typescript-eslint/parser": "^6.21.0",
|
|
64
|
-
"cspell-lib": "^8.
|
|
64
|
+
"cspell-lib": "^8.4.1",
|
|
65
65
|
"eslint-plugin-import": "npm:eslint-plugin-i@2.29.1",
|
|
66
66
|
"eslint-plugin-import-newlines": "^1.3.4",
|
|
67
|
-
"eslint-plugin-jsdoc": "^48.
|
|
67
|
+
"eslint-plugin-jsdoc": "^48.2.0",
|
|
68
68
|
"eslint-plugin-jsonc": "^2.13.0",
|
|
69
69
|
"eslint-plugin-markdown": "^3.0.1",
|
|
70
70
|
"eslint-plugin-readable-tailwind": "^1.1.0-alpha.1",
|
|
71
71
|
"eslint-plugin-simple-import-sort": "^12.0.0",
|
|
72
72
|
"eslint-plugin-sort-destructure-keys": "^1.5.0",
|
|
73
73
|
"eslint-plugin-sort-keys": "^2.3.5",
|
|
74
|
-
"eslint-plugin-tailwindcss": "^3.14.
|
|
74
|
+
"eslint-plugin-tailwindcss": "^3.14.3",
|
|
75
75
|
"eslint-plugin-typescript-sort-keys": "^3.1.0",
|
|
76
76
|
"eslint-plugin-unicorn": "^51.0.1",
|
|
77
77
|
"eslint-plugin-unused-imports": "^3.1.0",
|
|
78
78
|
"eslint-plugin-vitest": "^0.3.22",
|
|
79
79
|
"eslint-plugin-yml": "^1.12.2",
|
|
80
80
|
"markdownlint-cli2": "^0.12.1",
|
|
81
|
-
"typescript-eslint": "^7.0.
|
|
81
|
+
"typescript-eslint": "^7.0.2",
|
|
82
82
|
"vite-tsconfig-paths": "^4.3.1",
|
|
83
83
|
"vitest-github-actions-reporter": "^0.11.1"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
|
-
"@types/node": "^20.11.
|
|
86
|
+
"@types/node": "^20.11.20",
|
|
87
87
|
"changelogen": "^0.5.5",
|
|
88
|
-
"cspell": "^8.
|
|
88
|
+
"cspell": "^8.4.1",
|
|
89
89
|
"eslint": "^8.56.0",
|
|
90
90
|
"markdownlint": "^0.33.0",
|
|
91
|
-
"vite": "^5.1.
|
|
92
|
-
"vitest": "^1.3.
|
|
91
|
+
"vite": "^5.1.4",
|
|
92
|
+
"vitest": "^1.3.1"
|
|
93
93
|
},
|
|
94
94
|
"keywords": [],
|
|
95
95
|
"optionalPeerDependencies": {
|