From 07f8a35bb44d8b5b3afbb67192bdeb3f5c1c9fa8 Mon Sep 17 00:00:00 2001 From: Martin Raifer Date: Fri, 12 Apr 2024 18:38:57 +0200 Subject: [PATCH] lint eslint config file --- eslint.config.mjs | 179 +++++++++++++++++++++++----------------------- 1 file changed, 89 insertions(+), 90 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index d1d4929..87d022e 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -15,96 +15,95 @@ export default [ } }, rules: { - "accessor-pairs": "error", - "array-callback-return": "warn", - "arrow-spacing": "warn", - "block-scoped-var": "error", - "class-methods-use-this": "error", - "complexity": ["warn", 50], - "curly": ["warn", "multi-line", "consistent"], - "default-case-last": "error", - "default-param-last": "error", - "dot-notation": "error", - "eqeqeq": ["error", "smart"], - "grouped-accessor-pairs": "error", - "indent": ["off", 4], - "keyword-spacing": "error", - "linebreak-style": ["error", "unix"], - "no-await-in-loop": "error", - "no-caller": "error", - "no-catch-shadow": "error", - "no-console": "warn", - "no-constructor-return": "error", - "no-div-regex": "error", - "no-duplicate-imports": "warn", - "no-eq-null": "error", - "no-eval": "error", - "no-extend-native": "error", - "no-extra-bind": "error", - "no-extra-label": "error", - "no-floating-decimal": "error", - "no-global-assign": "error", - "no-implicit-coercion": ["warn", { "boolean": false, "number": false }], - "no-implied-eval": "error", - "no-invalid-this": "off", - "no-iterator": "error", - "no-labels": "error", - "no-label-var": "error", - "no-lone-blocks": "error", - "no-loop-func": "error", - "no-loss-of-precision": "error", - "no-multi-str": "error", - "no-new": "error", - "no-new-func": "error", - "no-new-wrappers": "error", - "no-octal": "error", - "no-octal-escape": "error", - "no-process-env": "error", - "no-promise-executor-return": "error", - "no-proto": "error", - "no-prototype-builtins": "off", - "no-restricted-properties": "error", - "no-return-assign": "off", - "no-return-await": "error", - "no-script-url": "error", - "no-self-compare": "error", - "no-sequences": "error", - "no-shadow": "off", - "no-shadow-restricted-names": "error", - "no-template-curly-in-string": "warn", - "no-throw-literal": "error", - "no-trailing-spaces": "warn", - "no-undef": "error", - "no-undef-init": "warn", - "no-unexpected-multiline": "error", - "no-unneeded-ternary": "error", - "no-unmodified-loop-condition": "error", - "no-unreachable": "warn", - "no-unreachable-loop": "warn", - "no-unused-expressions": "error", - "no-unused-vars": "warn", - "no-use-before-define": ["off", "nofunc"], - "no-useless-backreference": "warn", - "no-useless-call": "warn", - "no-useless-computed-key": "warn", - "no-useless-concat": "warn", - "no-useless-constructor": "warn", - "no-useless-escape": "off", - "no-useless-rename": "warn", - "no-var": "warn", - "no-void": "error", - "no-warning-comments": "warn", - "no-whitespace-before-property": "warn", - "no-with": "error", - "quotes": ["error", "single"], - "radix": ["error", "always"], - "require-atomic-updates": "error", - "require-await": "error", - "semi": ["error", "always"], - "semi-spacing": "error", - "space-unary-ops": "error", - "wrap-regex": "off" - + 'accessor-pairs': 'error', + 'array-callback-return': 'warn', + 'arrow-spacing': 'warn', + 'block-scoped-var': 'error', + 'class-methods-use-this': 'error', + 'complexity': ['warn', 50], + 'curly': ['warn', 'multi-line', 'consistent'], + 'default-case-last': 'error', + 'default-param-last': 'error', + 'dot-notation': 'error', + 'eqeqeq': ['error', 'smart'], + 'grouped-accessor-pairs': 'error', + 'indent': ['off', 4], + 'keyword-spacing': 'error', + 'linebreak-style': ['error', 'unix'], + 'no-await-in-loop': 'error', + 'no-caller': 'error', + 'no-catch-shadow': 'error', + 'no-console': 'warn', + 'no-constructor-return': 'error', + 'no-div-regex': 'error', + 'no-duplicate-imports': 'warn', + 'no-eq-null': 'error', + 'no-eval': 'error', + 'no-extend-native': 'error', + 'no-extra-bind': 'error', + 'no-extra-label': 'error', + 'no-floating-decimal': 'error', + 'no-global-assign': 'error', + 'no-implicit-coercion': ['warn', { 'boolean': false, 'number': false }], + 'no-implied-eval': 'error', + 'no-invalid-this': 'off', + 'no-iterator': 'error', + 'no-labels': 'error', + 'no-label-var': 'error', + 'no-lone-blocks': 'error', + 'no-loop-func': 'error', + 'no-loss-of-precision': 'error', + 'no-multi-str': 'error', + 'no-new': 'error', + 'no-new-func': 'error', + 'no-new-wrappers': 'error', + 'no-octal': 'error', + 'no-octal-escape': 'error', + 'no-process-env': 'error', + 'no-promise-executor-return': 'error', + 'no-proto': 'error', + 'no-prototype-builtins': 'off', + 'no-restricted-properties': 'error', + 'no-return-assign': 'off', + 'no-return-await': 'error', + 'no-script-url': 'error', + 'no-self-compare': 'error', + 'no-sequences': 'error', + 'no-shadow': 'off', + 'no-shadow-restricted-names': 'error', + 'no-template-curly-in-string': 'warn', + 'no-throw-literal': 'error', + 'no-trailing-spaces': 'warn', + 'no-undef': 'error', + 'no-undef-init': 'warn', + 'no-unexpected-multiline': 'error', + 'no-unneeded-ternary': 'error', + 'no-unmodified-loop-condition': 'error', + 'no-unreachable': 'warn', + 'no-unreachable-loop': 'warn', + 'no-unused-expressions': 'error', + 'no-unused-vars': 'warn', + 'no-use-before-define': ['off', 'nofunc'], + 'no-useless-backreference': 'warn', + 'no-useless-call': 'warn', + 'no-useless-computed-key': 'warn', + 'no-useless-concat': 'warn', + 'no-useless-constructor': 'warn', + 'no-useless-escape': 'off', + 'no-useless-rename': 'warn', + 'no-var': 'warn', + 'no-void': 'error', + 'no-warning-comments': 'warn', + 'no-whitespace-before-property': 'warn', + 'no-with': 'error', + 'quotes': ['error', 'single'], + 'radix': ['error', 'always'], + 'require-atomic-updates': 'error', + 'require-await': 'error', + 'semi': ['error', 'always'], + 'semi-spacing': 'error', + 'space-unary-ops': 'error', + 'wrap-regex': 'off' } } ];