@rotki/eslint-config 6.0.0 → 6.1.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/index.mjs +8 -3
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -99,17 +99,21 @@ const GLOB_EXCLUDE = [
|
|
|
99
99
|
"**/.output",
|
|
100
100
|
"**/.vite-inspect",
|
|
101
101
|
"**/.yarn",
|
|
102
|
-
"**/vite.config.*.timestamp-*",
|
|
103
102
|
"**/.nyc_output",
|
|
104
103
|
"**/.e2e",
|
|
105
104
|
"**/*.patch",
|
|
106
105
|
"**/*.log",
|
|
107
106
|
"**/CHANGELOG*.md",
|
|
108
|
-
"**/*.min.*",
|
|
109
107
|
"**/LICENSE*",
|
|
108
|
+
"**/*.min.*",
|
|
110
109
|
"**/__snapshots__",
|
|
110
|
+
"**/vite.config.*.timestamp-*",
|
|
111
111
|
"**/auto-import?(s).d.ts",
|
|
112
|
-
"**/components.d.ts"
|
|
112
|
+
"**/components.d.ts",
|
|
113
|
+
"**/.context",
|
|
114
|
+
"**/.claude",
|
|
115
|
+
"**/.agents",
|
|
116
|
+
"**/.*/skills"
|
|
113
117
|
];
|
|
114
118
|
//#endregion
|
|
115
119
|
//#region src/configs/disables.ts
|
|
@@ -186,6 +190,7 @@ async function e18e(options = {}) {
|
|
|
186
190
|
...modernization ? { ...configs.modernization.rules } : {},
|
|
187
191
|
...moduleReplacements ? { ...configs.moduleReplacements.rules } : {},
|
|
188
192
|
...performanceImprovements ? { ...configs.performanceImprovements.rules } : {},
|
|
193
|
+
...type === "lib" ? {} : { "e18e/prefer-static-regex": "off" },
|
|
189
194
|
"e18e/prefer-array-to-reversed": "off",
|
|
190
195
|
"e18e/prefer-array-to-sorted": "off",
|
|
191
196
|
"e18e/prefer-array-to-spliced": "off",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rotki/eslint-config",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
6
|
"bugs": {
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"tsx": "4.21.0",
|
|
97
97
|
"typescript": "5.9.3",
|
|
98
98
|
"vitest": "4.1.2",
|
|
99
|
-
"@rotki/eslint-config": "6.
|
|
99
|
+
"@rotki/eslint-config": "6.1.0"
|
|
100
100
|
},
|
|
101
101
|
"engines": {
|
|
102
102
|
"node": ">=24 <25",
|