From df6419a986a599ef340ff9a6845fc0a2ef44f119 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Mon, 5 Dec 2022 12:48:49 +0100 Subject: [PATCH] cleanup --- .eslintrc.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 5ebb7fae38..031cffb63f 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -21,19 +21,19 @@ module.exports = { indent: ['error', 4, { SwitchCase: 1 }], curly: ['error', 'all'], 'object-shorthand': ['error', 'never'], - 'func-names': 'off', // atk4 ['error', 'never'], + 'func-names': 'off', 'no-param-reassign': 'off', 'class-methods-use-this': 'off', 'no-plusplus': 'off', 'consistent-return': 'off', 'no-nested-ternary': 'off', 'default-case': 'off', - 'no-console': 'off', // atk4 ['error', { allow: ['warn', 'error'] }], + 'no-console': 'off', 'no-restricted-syntax': 'off', 'no-underscore-dangle': 'off', 'max-len': 'off', 'prefer-template': 'off', - 'no-unused-vars': 'off', // atk4 ['error', { vars: 'all', args: 'none' }], + 'no-unused-vars': 'off', 'padding-line-between-statements': ['error', { blankLine: 'always', prev: '*', @@ -92,7 +92,7 @@ module.exports = { 'prefer-destructuring': 'off', 'no-useless-concat': 'off', 'prefer-const': 'off', - 'prefer-rest-params': 'off', // about 180 non-autofixable errors + 'prefer-rest-params': 'off', 'no-lonely-if': 'off', 'no-use-before-define': 'off', 'no-unused-expressions': 'off',