14 lines
461 B
JavaScript
14 lines
461 B
JavaScript
|
module.exports = {
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
extends: ['plugin:@typescript-eslint/recommended', 'prettier'],
|
||
|
plugins: ['@typescript-eslint', 'prettier'],
|
||
|
rules: {
|
||
|
'@typescript-eslint/camelcase': 'off',
|
||
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
||
|
'@typescript-eslint/no-use-before-define': 'off',
|
||
|
'@typescript-eslint/no-var-requires': 'off',
|
||
|
'prettier/prettier': 'error',
|
||
|
'prefer-const': 'off',
|
||
|
},
|
||
|
};
|