16 lines
491 B
JavaScript
16 lines
491 B
JavaScript
module.exports = {
|
|
rules: {
|
|
'prefer-named-exports': 'off',
|
|
'prefer-destructuring': 'off',
|
|
'comma-dangle': ['error', 'always-multiline'],
|
|
'class-methods-use-this': 'off',
|
|
'function-paren-newline': ['error', 'consistent'],
|
|
'eol-last': ['error', 'always'],
|
|
'no-restricted-syntax': 'off',
|
|
'no-await-in-loop': 'off',
|
|
'no-console': ['warn', { allow: ['warn', 'error'] }],
|
|
'space-infix-ops': 'off',
|
|
'@typescript-eslint/space-infix-ops': 'warn',
|
|
},
|
|
}
|