eslint-config-arklint 1.10.0 → 1.10.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/index.js +3 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -47,6 +47,7 @@ module.exports = {
|
|
|
47
47
|
"no-extend-native": "warn",
|
|
48
48
|
"no-extra-bind": "warn",
|
|
49
49
|
"no-extra-label": "warn",
|
|
50
|
+
"no-extra-semi": "off",
|
|
50
51
|
"no-fallthrough": "warn",
|
|
51
52
|
"no-func-assign": "warn",
|
|
52
53
|
"no-global-assign": "warn",
|
|
@@ -137,6 +138,7 @@ module.exports = {
|
|
|
137
138
|
"@stylistic/js/keyword-spacing": "warn",
|
|
138
139
|
"@stylistic/js/new-parens": "warn",
|
|
139
140
|
"@stylistic/js/no-confusing-arrow": "warn",
|
|
141
|
+
"@stylistic/js/no-extra-semi": "warn",
|
|
140
142
|
"@stylistic/js/no-floating-decimal": "warn",
|
|
141
143
|
"@stylistic/js/no-mixed-operators": "warn",
|
|
142
144
|
"@stylistic/js/no-multi-spaces": "warn",
|
|
@@ -160,7 +162,7 @@ module.exports = {
|
|
|
160
162
|
}],
|
|
161
163
|
"@stylistic/js/padding-line-between-statements": [
|
|
162
164
|
"warn",
|
|
163
|
-
{ blankLine: "always", prev:
|
|
165
|
+
{ blankLine: "always", prev: "default", next: "*" },
|
|
164
166
|
{ blankLine: "always", prev: "*", next: "switch" }
|
|
165
167
|
],
|
|
166
168
|
"@stylistic/js/quote-props": ["warn", "consistent-as-needed"],
|