14 lines
380 B
JavaScript
14 lines
380 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': 'error',
|
|
},
|
|
}
|