eslint-config-isaacscript 1.0.65 → 1.0.66
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/base.js +2 -15
- package/package.json +1 -1
package/base.js
CHANGED
|
@@ -25,9 +25,8 @@ module.exports = {
|
|
|
25
25
|
// This provides rules for max comment length that the "--fix" flag can fix
|
|
26
26
|
"plugin:comment-length-2/recommended",
|
|
27
27
|
|
|
28
|
-
// This provides
|
|
29
|
-
|
|
30
|
-
"plugin:eqeqeq-fix/recommended",
|
|
28
|
+
// This provides extra miscellaneous rules to keep code safe
|
|
29
|
+
"plugin:isaacscript/recommended",
|
|
31
30
|
|
|
32
31
|
// Find unused "eslint-disable" comments
|
|
33
32
|
// https://github.com/mysticatea/eslint-plugin-eslint-comments
|
|
@@ -37,23 +36,11 @@ module.exports = {
|
|
|
37
36
|
// https://github.com/gajus/eslint-plugin-jsdoc
|
|
38
37
|
"plugin:jsdoc/recommended",
|
|
39
38
|
|
|
40
|
-
// This prevents declaring arrays without a type
|
|
41
|
-
// https://github.com/Zamiell/eslint-plugin-no-array-any
|
|
42
|
-
"plugin:no-array-any/recommended",
|
|
43
|
-
|
|
44
39
|
// This prevents implicit iteration of Maps and Sets,
|
|
45
40
|
// which is helpful to prevent bugs when refactoring
|
|
46
41
|
// https://github.com/Zamiell/eslint-plugin-no-implicit-map-set-loops
|
|
47
42
|
"plugin:no-implicit-map-set-loops/recommended",
|
|
48
43
|
|
|
49
|
-
// This prevents declaring variables without a type
|
|
50
|
-
// https://github.com/Zamiell/eslint-plugin-no-let-any
|
|
51
|
-
"plugin:no-let-any/recommended",
|
|
52
|
-
|
|
53
|
-
// This provides a version of the "no-template-curly-in-string" that the "--fix" flag can fix
|
|
54
|
-
// https://github.com/Zamiell/eslint-plugin-no-template-curly-in-string-fix
|
|
55
|
-
"plugin:no-template-curly-in-string-fix/recommended",
|
|
56
|
-
|
|
57
44
|
// This prevents void return types on unexported functions
|
|
58
45
|
// https://github.com/Zamiell/eslint-plugin-no-void-return-type
|
|
59
46
|
"plugin:no-void-return-type/recommended",
|