eslint-config-isaacscript 4.0.0 → 4.0.1

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-eslint.js CHANGED
@@ -188,7 +188,9 @@ const SUGGESTIONS = {
188
188
  ],
189
189
 
190
190
  "max-classes-per-file": "error",
191
- "max-depth": "error",
191
+
192
+ /** Disabled since this rule is too prescriptive for general-purpose use. */
193
+ "max-depth": "off",
192
194
 
193
195
  /**
194
196
  * Disabled because enforcing an arbitrary line threshold for every file in a project does not
@@ -56,7 +56,8 @@ const SUPPORTED_RULES = {
56
56
  /**
57
57
  * The options are [copied from
58
58
  * Airbnb](https://github.com/iamturns/eslint-config-airbnb-typescript/blob/master/lib/shared.js).
59
- * We also allow a leading underscore, which signifies that it is temporarily not being used.
59
+ * We also allow a leading underscore, which signifies that the element is temporarily not being
60
+ * used.
60
61
  */
61
62
  "@typescript-eslint/naming-convention": [
62
63
  "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-isaacscript",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "A sharable ESLint config for TypeScript and IsaacScript projects.",
5
5
  "keywords": [
6
6
  "eslint",