@schoero/configs 1.0.24 → 1.0.26
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 +1 -1
- package/eslint/jsx.js +3 -2
- package/eslint/typescript.js +15 -25
- package/package.json +18 -18
package/cspell/cspell.json
CHANGED
package/eslint/jsx.js
CHANGED
|
@@ -63,9 +63,10 @@ export const jsx = [
|
|
|
63
63
|
"eslint-plugin-stylistic-plus": eslintPluginStylisticPlus
|
|
64
64
|
},
|
|
65
65
|
languageOptions: {
|
|
66
|
-
parser: eslintPluginTypeScript.parser,
|
|
67
66
|
parserOptions: {
|
|
68
|
-
|
|
67
|
+
ecmaFeatures: {
|
|
68
|
+
jsx: true
|
|
69
|
+
}
|
|
69
70
|
}
|
|
70
71
|
},
|
|
71
72
|
rules: {
|
package/eslint/typescript.js
CHANGED
|
@@ -22,31 +22,12 @@ export const typescript = [
|
|
|
22
22
|
parserOptions: {
|
|
23
23
|
EXPERIMENTAL_useProjectService: true,
|
|
24
24
|
projectService: true,
|
|
25
|
-
project: false
|
|
25
|
+
project: false,
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
files: ["**/*.{ts,tsx,cts}"]
|
|
29
29
|
},
|
|
30
30
|
|
|
31
|
-
{
|
|
32
|
-
plugins: {
|
|
33
|
-
"eslint-plugin-typescript": eslintPluginTypeScript.plugin
|
|
34
|
-
},
|
|
35
|
-
files: ["**/*.{ts,cts}"],
|
|
36
|
-
rules: {
|
|
37
|
-
|
|
38
|
-
// naming conventions
|
|
39
|
-
"eslint-plugin-typescript/naming-convention": [
|
|
40
|
-
"warn",
|
|
41
|
-
{
|
|
42
|
-
format: ["camelCase", "UPPER_CASE"],
|
|
43
|
-
leadingUnderscore: "allow",
|
|
44
|
-
selector: "variable"
|
|
45
|
-
}
|
|
46
|
-
]
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
|
|
50
31
|
{
|
|
51
32
|
files: ["**/*.{ts,tsx,cts}"],
|
|
52
33
|
plugins: {
|
|
@@ -120,7 +101,6 @@ export const typescript = [
|
|
|
120
101
|
"eslint-plugin-typescript/non-nullable-type-assertion-style": "warn",
|
|
121
102
|
"eslint-plugin-typescript/no-non-null-asserted-nullish-coalescing": "warn",
|
|
122
103
|
"eslint-plugin-typescript/no-non-null-asserted-optional-chain": "warn",
|
|
123
|
-
"eslint-plugin-typescript/no-unnecessary-condition": "warn",
|
|
124
104
|
"eslint-plugin-typescript/no-unnecessary-qualifier": "warn",
|
|
125
105
|
"eslint-plugin-typescript/no-unnecessary-type-assertion": "warn",
|
|
126
106
|
"eslint-plugin-typescript/no-unnecessary-type-constraint": "warn",
|
|
@@ -173,6 +153,11 @@ export const typescript = [
|
|
|
173
153
|
// naming conventions
|
|
174
154
|
"eslint-plugin-typescript/naming-convention": [
|
|
175
155
|
"warn",
|
|
156
|
+
{
|
|
157
|
+
format: ["camelCase", "UPPER_CASE"],
|
|
158
|
+
leadingUnderscore: "allow",
|
|
159
|
+
selector: "variable"
|
|
160
|
+
},
|
|
176
161
|
{
|
|
177
162
|
filter: {
|
|
178
163
|
match: false,
|
|
@@ -260,13 +245,18 @@ export const typescript = [
|
|
|
260
245
|
|
|
261
246
|
// standalone typescript
|
|
262
247
|
{
|
|
263
|
-
languageOptions: {
|
|
264
|
-
parser: eslintPluginTypeScript.parser,
|
|
265
|
-
parserOptions: { project: false, program: null }
|
|
266
|
-
},
|
|
267
248
|
plugins: {
|
|
268
249
|
"eslint-plugin-typescript": eslintPluginTypeScript.plugin
|
|
269
250
|
},
|
|
251
|
+
languageOptions: {
|
|
252
|
+
parser: eslintPluginTypeScript.parser,
|
|
253
|
+
parserOptions: {
|
|
254
|
+
EXPERIMENTAL_useProjectService: false,
|
|
255
|
+
projectService: false,
|
|
256
|
+
project: false,
|
|
257
|
+
program: null
|
|
258
|
+
}
|
|
259
|
+
},
|
|
270
260
|
files: [
|
|
271
261
|
"**/*.config.{ts,mts,cts}",
|
|
272
262
|
"**/*.{md,mdx}/*.{ts,tsx,mjs,cjs,js,jsx,cts,mts,ctsx,mtsx}"
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.
|
|
2
|
+
"version": "1.0.26",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"name": "@schoero/configs",
|
|
5
5
|
"description": "",
|
|
@@ -72,32 +72,32 @@
|
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
74
|
"@cspell/dict-bash": "^4.1.3",
|
|
75
|
-
"@cspell/dict-companies": "^3.1.
|
|
75
|
+
"@cspell/dict-companies": "^3.1.3",
|
|
76
76
|
"@cspell/dict-css": "^4.0.12",
|
|
77
77
|
"@cspell/dict-de-ch": "^1.2.0",
|
|
78
78
|
"@cspell/dict-en_us": "^4.3.23",
|
|
79
79
|
"@cspell/dict-fr-fr": "^2.2.2",
|
|
80
|
-
"@cspell/dict-fullstack": "^3.
|
|
80
|
+
"@cspell/dict-fullstack": "^3.2.0",
|
|
81
81
|
"@cspell/dict-html": "^4.0.5",
|
|
82
82
|
"@cspell/dict-html-symbol-entities": "^4.0.0",
|
|
83
83
|
"@cspell/dict-it-it": "^3.1.0",
|
|
84
84
|
"@cspell/dict-lorem-ipsum": "^4.0.0",
|
|
85
85
|
"@cspell/dict-markdown": "^2.0.2",
|
|
86
86
|
"@cspell/dict-node": "^5.0.1",
|
|
87
|
-
"@cspell/dict-npm": "^5.0.
|
|
87
|
+
"@cspell/dict-npm": "^5.0.18",
|
|
88
88
|
"@cspell/dict-public-licenses": "^2.0.7",
|
|
89
|
-
"@cspell/dict-software-terms": "^3.4.
|
|
90
|
-
"@cspell/dict-typescript": "^3.1.
|
|
91
|
-
"@stylistic/eslint-plugin-js": "^2.
|
|
92
|
-
"@stylistic/eslint-plugin-jsx": "^2.
|
|
93
|
-
"@stylistic/eslint-plugin-plus": "^2.
|
|
94
|
-
"@stylistic/eslint-plugin-ts": "^2.
|
|
95
|
-
"cspell-lib": "^8.
|
|
89
|
+
"@cspell/dict-software-terms": "^3.4.10",
|
|
90
|
+
"@cspell/dict-typescript": "^3.1.6",
|
|
91
|
+
"@stylistic/eslint-plugin-js": "^2.4.0",
|
|
92
|
+
"@stylistic/eslint-plugin-jsx": "^2.4.0",
|
|
93
|
+
"@stylistic/eslint-plugin-plus": "^2.4.0",
|
|
94
|
+
"@stylistic/eslint-plugin-ts": "^2.4.0",
|
|
95
|
+
"cspell-lib": "^8.12.1",
|
|
96
96
|
"eslint-plugin-import-newlines": "^1.4.0",
|
|
97
97
|
"eslint-plugin-import-x": "^0.5.3",
|
|
98
|
-
"eslint-plugin-jsdoc": "^48.
|
|
98
|
+
"eslint-plugin-jsdoc": "^48.8.3",
|
|
99
99
|
"eslint-plugin-jsonc": "^2.16.0",
|
|
100
|
-
"eslint-plugin-markdown": "^5.
|
|
100
|
+
"eslint-plugin-markdown": "^5.1.0",
|
|
101
101
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
102
102
|
"eslint-plugin-sort-destructure-keys": "^2.0.0",
|
|
103
103
|
"eslint-plugin-sort-keys": "^2.3.5",
|
|
@@ -107,21 +107,21 @@
|
|
|
107
107
|
"eslint-plugin-vitest": "^0.5.4",
|
|
108
108
|
"eslint-plugin-yml": "^1.14.0",
|
|
109
109
|
"markdownlint-cli2": "^0.13.0",
|
|
110
|
-
"typescript-eslint": "^7.
|
|
110
|
+
"typescript-eslint": "^7.17.0",
|
|
111
111
|
"vite-tsconfig-paths": "^4.3.2",
|
|
112
112
|
"vitest-github-actions-reporter": "^0.11.1"
|
|
113
113
|
},
|
|
114
114
|
"optionalDependencies": {
|
|
115
|
-
"eslint-plugin-readable-tailwind": "1.5.
|
|
115
|
+
"eslint-plugin-readable-tailwind": "1.5.3",
|
|
116
116
|
"eslint-plugin-tailwindcss": "^3.17.4"
|
|
117
117
|
},
|
|
118
118
|
"devDependencies": {
|
|
119
|
-
"@types/node": "^20.14.
|
|
119
|
+
"@types/node": "^20.14.13",
|
|
120
120
|
"changelogen": "^0.5.5",
|
|
121
|
-
"cspell": "^8.
|
|
121
|
+
"cspell": "^8.12.1",
|
|
122
122
|
"eslint": "^8.57.0",
|
|
123
123
|
"markdownlint": "^0.34.0",
|
|
124
|
-
"vite": "^5.3.
|
|
124
|
+
"vite": "^5.3.5",
|
|
125
125
|
"vitest": "^1.6.0"
|
|
126
126
|
},
|
|
127
127
|
"keywords": []
|