@schoero/configs 1.5.27 → 1.5.29
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/cspell/cspell.json +6 -2
- package/eslint/tailwind.js +1 -0
- package/markdownlint/markdownlint.jsonc +2 -0
- package/package.json +39 -39
package/cspell/cspell.json
CHANGED
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
},
|
|
125
125
|
{
|
|
126
126
|
"name": "CStyleHexValue",
|
|
127
|
-
"pattern": "/\\b0x[0-9a-f_]
|
|
127
|
+
"pattern": "/\\b0x[0-9a-f_]+n?\\b/gi"
|
|
128
128
|
},
|
|
129
129
|
{
|
|
130
130
|
"name": "CSSHexValue",
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
},
|
|
213
213
|
{
|
|
214
214
|
"name": "SpellCheckerIgnoreInDocSetting",
|
|
215
|
-
"pattern": "/\\bc?spell(?:-?checker)?::?\\s*ignoreRegExp.*/gim"
|
|
215
|
+
"pattern": "/\\bc?spell(?:-?checker)?::?\\s*(ignoreRegExp|word|ignore).*/gim"
|
|
216
216
|
},
|
|
217
217
|
{
|
|
218
218
|
"name": "PhpHereDoc",
|
|
@@ -230,6 +230,10 @@
|
|
|
230
230
|
"name": "Everything",
|
|
231
231
|
"pattern": ".*"
|
|
232
232
|
},
|
|
233
|
+
{
|
|
234
|
+
"name": "CSS-url",
|
|
235
|
+
"pattern": "/\\burl\\((?:\"data:[^\"]*\"|'data:[^']*')\\)/gm"
|
|
236
|
+
},
|
|
233
237
|
{
|
|
234
238
|
"name": "HTML-id",
|
|
235
239
|
"pattern": "/\\bid=\"[^\"]*\"/gi"
|
package/eslint/tailwind.js
CHANGED
|
@@ -21,6 +21,7 @@ export const tailwind = [
|
|
|
21
21
|
"eslint-plugin-better-tailwindcss/enforce-consistent-class-order": "warn",
|
|
22
22
|
"eslint-plugin-better-tailwindcss/enforce-consistent-variable-syntax": "warn",
|
|
23
23
|
"eslint-plugin-better-tailwindcss/enforce-consistent-important-position": "warn",
|
|
24
|
+
"eslint-plugin-better-tailwindcss/enforce-consistent-variant-order": "warn",
|
|
24
25
|
"eslint-plugin-better-tailwindcss/enforce-shorthand-classes": "warn",
|
|
25
26
|
"eslint-plugin-better-tailwindcss/no-unnecessary-whitespace": "warn",
|
|
26
27
|
"eslint-plugin-better-tailwindcss/no-deprecated-classes": "warn",
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.5.
|
|
2
|
+
"version": "1.5.29",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"name": "@schoero/configs",
|
|
5
5
|
"description": "",
|
|
@@ -43,16 +43,16 @@
|
|
|
43
43
|
"unwritten"
|
|
44
44
|
],
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"@stylistic/eslint-plugin": "^5.
|
|
46
|
+
"@stylistic/eslint-plugin": "^5.10.0",
|
|
47
47
|
"changelogen": "^0.6.2",
|
|
48
|
-
"cspell": "^
|
|
49
|
-
"eslint": "^9.39.
|
|
48
|
+
"cspell": "^10.0.0",
|
|
49
|
+
"eslint": "^9.39.4",
|
|
50
50
|
"markdownlint": "^0.40.0",
|
|
51
|
-
"oxlint": "^1.
|
|
52
|
-
"oxlint-tsgolint": "^0.
|
|
51
|
+
"oxlint": "^1.59.0",
|
|
52
|
+
"oxlint-tsgolint": "^0.20.0",
|
|
53
53
|
"unwritten": "^0.2.14",
|
|
54
|
-
"vite": "^7.
|
|
55
|
-
"vitest": "^4.
|
|
54
|
+
"vite": "^7.3.1",
|
|
55
|
+
"vitest": "^4.1.4"
|
|
56
56
|
},
|
|
57
57
|
"peerDependenciesMeta": {
|
|
58
58
|
"@stylistic/eslint-plugin": {
|
|
@@ -88,53 +88,53 @@
|
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
90
|
"@cspell/dict-bash": "^4.2.2",
|
|
91
|
-
"@cspell/dict-companies": "^3.2.
|
|
92
|
-
"@cspell/dict-css": "^4.
|
|
91
|
+
"@cspell/dict-companies": "^3.2.11",
|
|
92
|
+
"@cspell/dict-css": "^4.1.1",
|
|
93
93
|
"@cspell/dict-de-ch": "^1.3.2",
|
|
94
|
-
"@cspell/dict-en_us": "^4.4.
|
|
94
|
+
"@cspell/dict-en_us": "^4.4.33",
|
|
95
95
|
"@cspell/dict-fr-fr": "^2.3.2",
|
|
96
|
-
"@cspell/dict-fullstack": "^3.2.
|
|
97
|
-
"@cspell/dict-html": "^4.0.
|
|
96
|
+
"@cspell/dict-fullstack": "^3.2.9",
|
|
97
|
+
"@cspell/dict-html": "^4.0.15",
|
|
98
98
|
"@cspell/dict-html-symbol-entities": "^4.0.5",
|
|
99
99
|
"@cspell/dict-it-it": "^3.1.6",
|
|
100
100
|
"@cspell/dict-lorem-ipsum": "^4.0.5",
|
|
101
|
-
"@cspell/dict-markdown": "^2.0.
|
|
102
|
-
"@cspell/dict-node": "^5.0.
|
|
103
|
-
"@cspell/dict-npm": "^5.2.
|
|
104
|
-
"@cspell/dict-public-licenses": "^2.0.
|
|
105
|
-
"@cspell/dict-software-terms": "^5.
|
|
101
|
+
"@cspell/dict-markdown": "^2.0.16",
|
|
102
|
+
"@cspell/dict-node": "^5.0.9",
|
|
103
|
+
"@cspell/dict-npm": "^5.2.38",
|
|
104
|
+
"@cspell/dict-public-licenses": "^2.0.16",
|
|
105
|
+
"@cspell/dict-software-terms": "^5.2.2",
|
|
106
106
|
"@cspell/dict-typescript": "^3.2.3",
|
|
107
|
-
"@stylistic/eslint-plugin": "^5.
|
|
108
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
109
|
-
"@typescript-eslint/parser": "^8.
|
|
110
|
-
"cspell-lib": "^
|
|
107
|
+
"@stylistic/eslint-plugin": "^5.10.0",
|
|
108
|
+
"@typescript-eslint/eslint-plugin": "^8.58.1",
|
|
109
|
+
"@typescript-eslint/parser": "^8.58.1",
|
|
110
|
+
"cspell-lib": "^10.0.0",
|
|
111
111
|
"eslint-plugin-import-newlines": "^1.4.0",
|
|
112
|
-
"eslint-plugin-import-x": "^4.16.
|
|
113
|
-
"eslint-plugin-jsdoc": "^
|
|
114
|
-
"eslint-plugin-jsonc": "^
|
|
112
|
+
"eslint-plugin-import-x": "^4.16.2",
|
|
113
|
+
"eslint-plugin-jsdoc": "^62.9.0",
|
|
114
|
+
"eslint-plugin-jsonc": "^3.1.2",
|
|
115
115
|
"eslint-plugin-markdown": "^5.1.0",
|
|
116
|
-
"eslint-plugin-perfectionist": "^
|
|
117
|
-
"eslint-plugin-unicorn": "^
|
|
118
|
-
"eslint-plugin-unused-imports": "^4.
|
|
116
|
+
"eslint-plugin-perfectionist": "^5.8.0",
|
|
117
|
+
"eslint-plugin-unicorn": "^64.0.0",
|
|
118
|
+
"eslint-plugin-unused-imports": "^4.4.1",
|
|
119
119
|
"eslint-plugin-vitest": "^0.5.4",
|
|
120
|
-
"eslint-plugin-yml": "^
|
|
121
|
-
"markdownlint-cli2": "^0.
|
|
122
|
-
"vite-tsconfig-paths": "^6.
|
|
123
|
-
"yaml-eslint-parser": "^
|
|
120
|
+
"eslint-plugin-yml": "^3.3.1",
|
|
121
|
+
"markdownlint-cli2": "^0.22.0",
|
|
122
|
+
"vite-tsconfig-paths": "^6.1.1",
|
|
123
|
+
"yaml-eslint-parser": "^2.0.0"
|
|
124
124
|
},
|
|
125
125
|
"optionalDependencies": {
|
|
126
|
-
"eslint-plugin-better-tailwindcss": "^4.
|
|
126
|
+
"eslint-plugin-better-tailwindcss": "^4.4.0"
|
|
127
127
|
},
|
|
128
128
|
"devDependencies": {
|
|
129
|
-
"@types/node": "^25.
|
|
129
|
+
"@types/node": "^25.5.2",
|
|
130
130
|
"changelogen": "^0.6.2",
|
|
131
|
-
"cspell": "^
|
|
132
|
-
"eslint": "^9.39.
|
|
131
|
+
"cspell": "^10.0.0",
|
|
132
|
+
"eslint": "^9.39.4",
|
|
133
133
|
"markdownlint": "^0.40.0",
|
|
134
|
-
"oxlint": "^1.
|
|
135
|
-
"oxlint-tsgolint": "^0.
|
|
134
|
+
"oxlint": "^1.59.0",
|
|
135
|
+
"oxlint-tsgolint": "^0.20.0",
|
|
136
136
|
"vite": "^7.3.0",
|
|
137
|
-
"vitest": "^4.
|
|
137
|
+
"vitest": "^4.1.4"
|
|
138
138
|
},
|
|
139
139
|
"keywords": []
|
|
140
140
|
}
|