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 +3 -1
- package/base-typescript-eslint.js +2 -1
- package/package.json +1 -1
package/base-eslint.js
CHANGED
|
@@ -188,7 +188,9 @@ const SUGGESTIONS = {
|
|
|
188
188
|
],
|
|
189
189
|
|
|
190
190
|
"max-classes-per-file": "error",
|
|
191
|
-
|
|
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
|
|
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",
|