@rebeccastevens/eslint-config 1.3.11 → 1.3.12
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/modern.cjs +1 -9
- package/dist/modern.mjs +1 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
|
|
3
3
|
|
|
4
|
+
## [1.3.12](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.11...v1.3.12) (2022-04-02)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* allow underscore dangle ([c92396b](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/c92396bdeda2732c34d60311a4ae74da1dac6c27))
|
|
10
|
+
|
|
4
11
|
## [1.3.11](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.10...v1.3.11) (2022-04-02)
|
|
5
12
|
|
|
6
13
|
|
package/dist/modern.cjs
CHANGED
|
@@ -440,15 +440,7 @@ const rules$2 = {
|
|
|
440
440
|
],
|
|
441
441
|
"no-tabs": "error",
|
|
442
442
|
"no-trailing-spaces": "error",
|
|
443
|
-
"no-underscore-dangle":
|
|
444
|
-
"error",
|
|
445
|
-
{
|
|
446
|
-
allow: [],
|
|
447
|
-
allowAfterThis: false,
|
|
448
|
-
allowAfterSuper: false,
|
|
449
|
-
enforceInMethodNames: true,
|
|
450
|
-
},
|
|
451
|
-
],
|
|
443
|
+
"no-underscore-dangle": "off",
|
|
452
444
|
"no-unneeded-ternary": "error",
|
|
453
445
|
"no-whitespace-before-property": "error",
|
|
454
446
|
"nonblock-statement-body-position": [
|
package/dist/modern.mjs
CHANGED
|
@@ -438,15 +438,7 @@ const rules$2 = {
|
|
|
438
438
|
],
|
|
439
439
|
"no-tabs": "error",
|
|
440
440
|
"no-trailing-spaces": "error",
|
|
441
|
-
"no-underscore-dangle":
|
|
442
|
-
"error",
|
|
443
|
-
{
|
|
444
|
-
allow: [],
|
|
445
|
-
allowAfterThis: false,
|
|
446
|
-
allowAfterSuper: false,
|
|
447
|
-
enforceInMethodNames: true,
|
|
448
|
-
},
|
|
449
|
-
],
|
|
441
|
+
"no-underscore-dangle": "off",
|
|
450
442
|
"no-unneeded-ternary": "error",
|
|
451
443
|
"no-whitespace-before-property": "error",
|
|
452
444
|
"nonblock-statement-body-position": [
|