Skip to content

Commit

Permalink
Update eslint cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
sefinek committed Nov 19, 2024
1 parent 3270732 commit 05190c3
Showing 1 changed file with 18 additions and 19 deletions.
37 changes: 18 additions & 19 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
import js from '@eslint/js';
import globals from 'globals';

// noinspection JSUnusedGlobalSymbols
export default [
js.configs.recommended,
{
languageOptions: {
ecmaVersion: 2024,
globals: {
...globals.node,
...globals.es2024
}
...globals.es2024,
},
},
rules: {
'arrow-spacing': ['warn', { before: true, after: true }],
'comma-dangle': ['error'],
'comma-spacing': 'error',
'comma-dangle': ['warn', { arrays: 'always-multiline', objects: 'always-multiline' }],
'comma-spacing': 'warn',
'comma-style': 'error',
'curly': ['error', 'multi-line', 'consistent'],
'dot-location': ['error', 'property'],
Expand All @@ -26,31 +25,31 @@ export default [
'max-statements-per-line': ['error', { max: 2 }],
'no-console': 'off',
'no-empty': 'warn',
'no-empty-function': 'error',
'no-empty-function': 'warn',
'no-floating-decimal': 'error',
'no-lonely-if': 'error',
'no-lonely-if': 'warn',
'no-multi-spaces': 'warn',
'no-multiple-empty-lines': ['warn', { max: 4, maxEOF: 1, maxBOF: 0 }],
'no-multiple-empty-lines': ['warn', { max: 3, maxEOF: 1, maxBOF: 0 }],
'no-shadow': ['error', { allow: ['err', 'resolve', 'reject'] }],
'no-trailing-spaces': ['warn'],
'no-trailing-spaces': 'warn',
'no-unreachable': 'warn',
'no-unused-vars': 'warn',
'no-use-before-define': ['error', { functions: false, classes: true }],
'no-var': 'error',
'object-curly-spacing': ['error', 'always'],
'object-curly-spacing': ['warn', 'always'],
'prefer-const': 'error',
'quotes': ['warn', 'single'],
'semi': ['warn', 'always'],
'sort-vars': 'warn',
'space-before-blocks': 'error',
'space-before-function-paren': ['error', { anonymous: 'never', named: 'never', asyncArrow: 'always' }],
'space-in-parens': 'error',
'space-infix-ops': 'error',
'space-unary-ops': 'error',
'space-before-blocks': 'warn',
'space-before-function-paren': ['warn', { anonymous: 'never', named: 'never', asyncArrow: 'always' }],
'space-in-parens': 'warn',
'space-infix-ops': 'warn',
'space-unary-ops': 'warn',
'spaced-comment': 'warn',
'wrap-regex': 'error',
'yoda': 'error'
'wrap-regex': 'warn',
'yoda': 'error',
},
ignores: ['node_modules', '*.min.js']
}
ignores: ['node_modules', '*min.js', '*bundle*', 'build/*', 'dist/*'],
},
];

0 comments on commit 05190c3

Please sign in to comment.