eslint-config-isaacscript 1.0.66 → 1.0.67
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 +1 -5
- package/package.json +1 -1
package/base.js
CHANGED
|
@@ -41,10 +41,6 @@ module.exports = {
|
|
|
41
41
|
// https://github.com/Zamiell/eslint-plugin-no-implicit-map-set-loops
|
|
42
42
|
"plugin:no-implicit-map-set-loops/recommended",
|
|
43
43
|
|
|
44
|
-
// This prevents void return types on unexported functions
|
|
45
|
-
// https://github.com/Zamiell/eslint-plugin-no-void-return-type
|
|
46
|
-
"plugin:no-void-return-type/recommended",
|
|
47
|
-
|
|
48
44
|
// Disable any ESLint rules that conflict with Prettier
|
|
49
45
|
// (otherwise, we will have unfixable ESLint errors)
|
|
50
46
|
// https://github.com/prettier/eslint-config-prettier
|
|
@@ -68,7 +64,7 @@ module.exports = {
|
|
|
68
64
|
// Documentation:
|
|
69
65
|
// https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/docs/rules/array-type.md
|
|
70
66
|
// Not defined in the parent configs
|
|
71
|
-
// Prefer the "[]
|
|
67
|
+
// Prefer the "string[]" syntax over "Array<string>"
|
|
72
68
|
"@typescript-eslint/array-type": ["warn", { default: "array-simple" }],
|
|
73
69
|
|
|
74
70
|
// Documentation:
|