@abinnovision/eslint-config-base 3.1.0-beta.2 → 3.2.0-beta.2
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/CHANGELOG.md +7 -0
- package/dist/index.cjs +3 -15
- package/dist/index.js +3 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.1.0](https://github.com/abinnovision/js-commons/compare/eslint-config-base-v3.0.3...eslint-config-base-v3.1.0) (2026-02-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* downgrade to eslint v9 and add documentation about it ([#575](https://github.com/abinnovision/js-commons/issues/575)) ([5810b53](https://github.com/abinnovision/js-commons/commit/5810b538b386fb56848a3d1755a8eda7123e88fd))
|
|
9
|
+
|
|
3
10
|
## [3.0.3](https://github.com/abinnovision/js-commons/compare/eslint-config-base-v3.0.2...eslint-config-base-v3.0.3) (2026-02-19)
|
|
4
11
|
|
|
5
12
|
|
package/dist/index.cjs
CHANGED
|
@@ -126,12 +126,6 @@ var config = (0, import_config.defineConfig)([
|
|
|
126
126
|
* @see https://eslint.org/docs/latest/rules/no-extra-bind
|
|
127
127
|
*/
|
|
128
128
|
"no-extra-bind": "error",
|
|
129
|
-
/**
|
|
130
|
-
* Disallow leading or trailing decimal points in numeric literals.
|
|
131
|
-
*
|
|
132
|
-
* @see https://eslint.org/docs/latest/rules/no-floating-decimal
|
|
133
|
-
*/
|
|
134
|
-
"no-floating-decimal": "error",
|
|
135
129
|
/**
|
|
136
130
|
* Disallow assignment operators in return statements.
|
|
137
131
|
*
|
|
@@ -151,11 +145,11 @@ var config = (0, import_config.defineConfig)([
|
|
|
151
145
|
*/
|
|
152
146
|
"no-new-func": "error",
|
|
153
147
|
/**
|
|
154
|
-
* Disallow new operators with Symbol
|
|
148
|
+
* Disallow new operators with native non-constructor functions (e.g. Symbol, BigInt).
|
|
155
149
|
*
|
|
156
|
-
* @see https://eslint.org/docs/latest/rules/no-new-
|
|
150
|
+
* @see https://eslint.org/docs/latest/rules/no-new-native-nonconstructor
|
|
157
151
|
*/
|
|
158
|
-
"no-new-
|
|
152
|
+
"no-new-native-nonconstructor": "error",
|
|
159
153
|
/**
|
|
160
154
|
* Disallow new operators with String, Number, and Boolean objects.
|
|
161
155
|
*
|
|
@@ -304,12 +298,6 @@ var config = (0, import_config.defineConfig)([
|
|
|
304
298
|
* @see https://eslint.org/docs/latest/rules/no-inner-declarations
|
|
305
299
|
*/
|
|
306
300
|
"no-inner-declarations": "error",
|
|
307
|
-
/**
|
|
308
|
-
* Disallow mixed binary operators without parentheses.
|
|
309
|
-
*
|
|
310
|
-
* @see https://eslint.org/docs/latest/rules/no-mixed-operators
|
|
311
|
-
*/
|
|
312
|
-
"no-mixed-operators": "error",
|
|
313
301
|
/**
|
|
314
302
|
* Disallow the use of console.
|
|
315
303
|
*
|
package/dist/index.js
CHANGED
|
@@ -87,12 +87,6 @@ var config = defineConfig([
|
|
|
87
87
|
* @see https://eslint.org/docs/latest/rules/no-extra-bind
|
|
88
88
|
*/
|
|
89
89
|
"no-extra-bind": "error",
|
|
90
|
-
/**
|
|
91
|
-
* Disallow leading or trailing decimal points in numeric literals.
|
|
92
|
-
*
|
|
93
|
-
* @see https://eslint.org/docs/latest/rules/no-floating-decimal
|
|
94
|
-
*/
|
|
95
|
-
"no-floating-decimal": "error",
|
|
96
90
|
/**
|
|
97
91
|
* Disallow assignment operators in return statements.
|
|
98
92
|
*
|
|
@@ -112,11 +106,11 @@ var config = defineConfig([
|
|
|
112
106
|
*/
|
|
113
107
|
"no-new-func": "error",
|
|
114
108
|
/**
|
|
115
|
-
* Disallow new operators with Symbol
|
|
109
|
+
* Disallow new operators with native non-constructor functions (e.g. Symbol, BigInt).
|
|
116
110
|
*
|
|
117
|
-
* @see https://eslint.org/docs/latest/rules/no-new-
|
|
111
|
+
* @see https://eslint.org/docs/latest/rules/no-new-native-nonconstructor
|
|
118
112
|
*/
|
|
119
|
-
"no-new-
|
|
113
|
+
"no-new-native-nonconstructor": "error",
|
|
120
114
|
/**
|
|
121
115
|
* Disallow new operators with String, Number, and Boolean objects.
|
|
122
116
|
*
|
|
@@ -265,12 +259,6 @@ var config = defineConfig([
|
|
|
265
259
|
* @see https://eslint.org/docs/latest/rules/no-inner-declarations
|
|
266
260
|
*/
|
|
267
261
|
"no-inner-declarations": "error",
|
|
268
|
-
/**
|
|
269
|
-
* Disallow mixed binary operators without parentheses.
|
|
270
|
-
*
|
|
271
|
-
* @see https://eslint.org/docs/latest/rules/no-mixed-operators
|
|
272
|
-
*/
|
|
273
|
-
"no-mixed-operators": "error",
|
|
274
262
|
/**
|
|
275
263
|
* Disallow the use of console.
|
|
276
264
|
*
|