39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
![]() |
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
commonjs: true,
|
||
|
es6: true,
|
||
|
node: true
|
||
|
},
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
parserOptions: {
|
||
|
sourceType: 'module',
|
||
|
ecmaVersion: 2021
|
||
|
},
|
||
|
plugins: ['@typescript-eslint'],
|
||
|
extends: [
|
||
|
'eslint:recommended',
|
||
|
'plugin:@typescript-eslint/recommended',
|
||
|
'plugin:@typescript-eslint/eslint-recommended',
|
||
|
'plugin:prettier/recommended'
|
||
|
],
|
||
|
rules: {
|
||
|
'no-empty': ['warn', { allowEmptyCatch: true }],
|
||
|
'@typescript-eslint/ban-ts-comment': ['error', { 'ts-ignore': 'allow-with-description' }],
|
||
|
'@typescript-eslint/explicit-function-return-type': 'error',
|
||
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
||
|
'@typescript-eslint/no-empty-function': ['error', { allow: ['arrowFunctions'] }],
|
||
|
'@typescript-eslint/no-explicit-any': 'error',
|
||
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
||
|
'@typescript-eslint/no-var-requires': 'off'
|
||
|
},
|
||
|
overrides: [
|
||
|
{
|
||
|
files: ['*.js'],
|
||
|
rules: {
|
||
|
'@typescript-eslint/explicit-function-return-type': 'off'
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|