47 lines
808 B
JavaScript
47 lines
808 B
JavaScript
|
module.exports = {
|
||
|
'env': {
|
||
|
'es2021': true,
|
||
|
'node': true
|
||
|
},
|
||
|
'extends': [
|
||
|
'eslint:recommended',
|
||
|
'plugin:@typescript-eslint/recommended'
|
||
|
],
|
||
|
'parser': '@typescript-eslint/parser',
|
||
|
'parserOptions': {
|
||
|
'ecmaVersion': 13,
|
||
|
'sourceType': 'module',
|
||
|
'project': 'tsconfig.json',
|
||
|
'tsconfigRootDir': __dirname,
|
||
|
},
|
||
|
'plugins': [
|
||
|
'@typescript-eslint'
|
||
|
],
|
||
|
'rules': {
|
||
|
'no-empty': [
|
||
|
'error',
|
||
|
{
|
||
|
'allowEmptyCatch': true,
|
||
|
}
|
||
|
],
|
||
|
'@typescript-eslint/no-explicit-any': 'off',
|
||
|
'@typescript-eslint/no-unused-vars': 'off',
|
||
|
'indent': [
|
||
|
'error',
|
||
|
2
|
||
|
],
|
||
|
'linebreak-style': [
|
||
|
'error',
|
||
|
'unix'
|
||
|
],
|
||
|
'quotes': [
|
||
|
'error',
|
||
|
'single'
|
||
|
],
|
||
|
'semi': [
|
||
|
'error',
|
||
|
'always'
|
||
|
]
|
||
|
}
|
||
|
};
|
||
|
|