Merge pull request #13890 from Snuffleupagus/eslint-deprecated-rules

Update some deprecated ESLint rules
This commit is contained in:
Tim van der Meij 2021-08-11 22:18:44 +02:00 committed by GitHub
commit f154bbfc1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,6 +46,7 @@
}], }],
"unicorn/no-abusive-eslint-disable": "error", "unicorn/no-abusive-eslint-disable": "error",
"unicorn/no-array-push-push": "error", "unicorn/no-array-push-push": "error",
"unicorn/no-new-buffer": "error",
"unicorn/no-instanceof-array": "error", "unicorn/no-instanceof-array": "error",
"unicorn/no-useless-spread": "error", "unicorn/no-useless-spread": "error",
"unicorn/prefer-string-starts-ends-with": "error", "unicorn/prefer-string-starts-ends-with": "error",
@ -136,7 +137,6 @@
"strict": ["off", "global"], "strict": ["off", "global"],
// Variables // Variables
"no-catch-shadow": "error",
"no-delete-var": "error", "no-delete-var": "error",
"no-label-var": "error", "no-label-var": "error",
"no-shadow": "error", "no-shadow": "error",
@ -153,9 +153,6 @@
"variables": false, "variables": false,
}], }],
// Node.js and CommonJS
"no-buffer-constructor": "error",
// Stylistic Issues // Stylistic Issues
"lines-between-class-members": ["error", "always"], "lines-between-class-members": ["error", "always"],
"max-len": ["error", { "max-len": ["error", {