eslint-config-isaacscript 1.0.61 → 1.0.62

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.
Files changed (2) hide show
  1. package/base.js +4 -0
  2. package/package.json +2 -2
package/base.js CHANGED
@@ -34,6 +34,10 @@ module.exports = {
34
34
  // https://github.com/gajus/eslint-plugin-jsdoc
35
35
  "plugin:jsdoc/recommended",
36
36
 
37
+ // This prevents declaring arrays without a type
38
+ // https://github.com/Zamiell/eslint-plugin-no-array-any
39
+ "plugin:no-array-any/recommended",
40
+
37
41
  // This prevents implicit iteration of Maps and Sets,
38
42
  // which is helpful to prevent bugs when refactoring
39
43
  // https://github.com/Zamiell/eslint-plugin-no-implicit-map-set-loops
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-isaacscript",
3
- "version": "1.0.61",
3
+ "version": "1.0.62",
4
4
  "description": "An ESLint config for IsaacScript projects.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,6 +9,6 @@
9
9
  "license": "GPL-3.0",
10
10
  "author": "Zamiell",
11
11
  "devDependencies": {
12
- "prettier": "^2.6.0"
12
+ "prettier": "^2.6.1"
13
13
  }
14
14
  }