eslint-config-decent 3.1.42 → 3.1.44
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.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
- package/src/eslint.ts +1 -1
package/dist/index.cjs
CHANGED
|
@@ -194,7 +194,7 @@ const base$e = {
|
|
|
194
194
|
ignoreReadBeforeAssign: true
|
|
195
195
|
}
|
|
196
196
|
],
|
|
197
|
-
"prefer-exponentiation-operator": "
|
|
197
|
+
"prefer-exponentiation-operator": "off",
|
|
198
198
|
"prefer-numeric-literals": "error",
|
|
199
199
|
"prefer-object-spread": "error",
|
|
200
200
|
"prefer-regex-literals": [
|
package/dist/index.mjs
CHANGED
|
@@ -170,7 +170,7 @@ const base$e = {
|
|
|
170
170
|
ignoreReadBeforeAssign: true
|
|
171
171
|
}
|
|
172
172
|
],
|
|
173
|
-
"prefer-exponentiation-operator": "
|
|
173
|
+
"prefer-exponentiation-operator": "off",
|
|
174
174
|
"prefer-numeric-literals": "error",
|
|
175
175
|
"prefer-object-spread": "error",
|
|
176
176
|
"prefer-regex-literals": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-decent",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.44",
|
|
4
4
|
"description": "A decent ESLint configuration",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"@eslint/js": "9.39.1",
|
|
71
71
|
"@next/eslint-plugin-next": "16.0.4",
|
|
72
72
|
"@stylistic/eslint-plugin": "5.6.1",
|
|
73
|
-
"@vitest/eslint-plugin": "1.
|
|
73
|
+
"@vitest/eslint-plugin": "1.5.0",
|
|
74
74
|
"eslint-config-prettier": "10.1.8",
|
|
75
75
|
"eslint-plugin-import-x": "4.16.1",
|
|
76
76
|
"eslint-plugin-jest": "29.2.1",
|
package/src/eslint.ts
CHANGED
|
@@ -145,7 +145,7 @@ const base: ConfigWithExtends = {
|
|
|
145
145
|
ignoreReadBeforeAssign: true,
|
|
146
146
|
},
|
|
147
147
|
],
|
|
148
|
-
'prefer-exponentiation-operator': '
|
|
148
|
+
'prefer-exponentiation-operator': 'off',
|
|
149
149
|
'prefer-numeric-literals': 'error',
|
|
150
150
|
'prefer-object-spread': 'error',
|
|
151
151
|
'prefer-regex-literals': [
|