Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Dec 5, 2022
1 parent e52f5f4 commit df6419a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: '*',
Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit df6419a

Please sign in to comment.