@schoero/configs 1.1.2 → 1.1.4
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/imports.js +0 -1
- package/eslint/jsx.js +4 -2
- package/package.json +9 -9
package/eslint/imports.js
CHANGED
package/eslint/jsx.js
CHANGED
|
@@ -2,7 +2,8 @@ import eslintPluginStylisticJS from "@stylistic/eslint-plugin-js";
|
|
|
2
2
|
import eslintPluginStylisticJSX from "@stylistic/eslint-plugin-jsx";
|
|
3
3
|
import eslintPluginStylisticPlus from "@stylistic/eslint-plugin-plus";
|
|
4
4
|
import eslintPluginStylisticTS from "@stylistic/eslint-plugin-ts";
|
|
5
|
-
import eslintPluginTypeScript from "typescript-eslint";
|
|
5
|
+
import eslintPluginTypeScript from "@typescript-eslint/eslint-plugin";
|
|
6
|
+
import eslintParserTypeScript from "@typescript-eslint/parser";
|
|
6
7
|
|
|
7
8
|
|
|
8
9
|
/** @type {import("eslint").Linter.Config[]} */
|
|
@@ -58,10 +59,11 @@ export const jsx = [
|
|
|
58
59
|
{
|
|
59
60
|
files: ["**/*.{tsx,ctsx,mtsx}"],
|
|
60
61
|
plugins: {
|
|
61
|
-
"eslint-plugin-typescript": eslintPluginTypeScript
|
|
62
|
+
"eslint-plugin-typescript": eslintPluginTypeScript,
|
|
62
63
|
"eslint-plugin-stylistic-plus": eslintPluginStylisticPlus
|
|
63
64
|
},
|
|
64
65
|
languageOptions: {
|
|
66
|
+
parser: eslintParserTypeScript,
|
|
65
67
|
parserOptions: {
|
|
66
68
|
ecmaFeatures: {
|
|
67
69
|
jsx: true
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.1.
|
|
2
|
+
"version": "1.1.4",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"name": "@schoero/configs",
|
|
5
5
|
"description": "",
|
|
@@ -96,20 +96,20 @@
|
|
|
96
96
|
"@stylistic/eslint-plugin-jsx": "^2.7.2",
|
|
97
97
|
"@stylistic/eslint-plugin-plus": "^2.7.2",
|
|
98
98
|
"@stylistic/eslint-plugin-ts": "^2.7.2",
|
|
99
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
100
|
-
"@typescript-eslint/parser": "^8.
|
|
99
|
+
"@typescript-eslint/eslint-plugin": "^8.4.0",
|
|
100
|
+
"@typescript-eslint/parser": "^8.4.0",
|
|
101
101
|
"cspell-lib": "^8.14.2",
|
|
102
102
|
"eslint-plugin-import-newlines": "^1.4.0",
|
|
103
|
-
"eslint-plugin-import-x": "^4.
|
|
103
|
+
"eslint-plugin-import-x": "^4.2.1",
|
|
104
104
|
"eslint-plugin-jsdoc": "^50.2.2",
|
|
105
105
|
"eslint-plugin-jsonc": "^2.16.0",
|
|
106
106
|
"eslint-plugin-markdown": "^5.1.0",
|
|
107
|
-
"eslint-plugin-perfectionist": "^3.
|
|
107
|
+
"eslint-plugin-perfectionist": "^3.5.0",
|
|
108
108
|
"eslint-plugin-unicorn": "^55.0.0",
|
|
109
109
|
"eslint-plugin-unused-imports": "^4.1.3",
|
|
110
110
|
"eslint-plugin-vitest": "^0.5.4",
|
|
111
111
|
"eslint-plugin-yml": "^1.14.0",
|
|
112
|
-
"markdownlint-cli2": "^0.
|
|
112
|
+
"markdownlint-cli2": "^0.14.0",
|
|
113
113
|
"vite-tsconfig-paths": "^5.0.1",
|
|
114
114
|
"vitest-github-actions-reporter": "^0.11.1"
|
|
115
115
|
},
|
|
@@ -117,12 +117,12 @@
|
|
|
117
117
|
"eslint-plugin-readable-tailwind": "^1.8.0"
|
|
118
118
|
},
|
|
119
119
|
"devDependencies": {
|
|
120
|
-
"@types/node": "^22.5.
|
|
120
|
+
"@types/node": "^22.5.4",
|
|
121
121
|
"changelogen": "^0.5.5",
|
|
122
122
|
"cspell": "^8.14.2",
|
|
123
|
-
"eslint": "^9.
|
|
123
|
+
"eslint": "^9.10.0",
|
|
124
124
|
"markdownlint": "^0.35.0",
|
|
125
|
-
"vite": "^5.4.
|
|
125
|
+
"vite": "^5.4.3",
|
|
126
126
|
"vitest": "^2.0.5"
|
|
127
127
|
},
|
|
128
128
|
"keywords": []
|