Remove deprecated ESLint rules after version update.

This commit is contained in:
David Anson
2023-11-07 18:57:12 -08:00
parent 55caa5fd0a
commit c69f13c27f
3 changed files with 41 additions and 23080 deletions
-4
View File
@@ -17,15 +17,11 @@
],
"reportUnusedDisableDirectives": true,
"rules": {
"indent": ["error", 2],
"function-call-argument-newline": "off",
"max-statements": "off",
"multiline-ternary": "off",
"no-magic-numbers": "off",
"no-ternary": "off",
"one-var": "off",
"padded-blocks": "off",
"prefer-named-capture-group": "off",
"sort-keys": "off",
"node/handle-callback-err": "error",
+41 -23075
View File
File diff suppressed because one or more lines are too long
-1
View File
@@ -26,7 +26,6 @@ const outputFormatter = (options) => {
const context = errorContext ? ` [Context: "${errorContext}"]` : "";
const information = ruleInformation ? ` ${ruleInformation}` : "";
const message =
// eslint-disable-next-line max-len
`${fileName}${line}${column} ${name} ${ruleDescription}${detail}${context}${information}`;
const annotation = {
"title": ruleDescription,