2022-03-17 09:21:02 +01:00
|
|
|
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: {
|
2023-12-07 15:35:38 +01:00
|
|
|
'prettier/prettier': 'warn',
|
2022-03-17 09:21:02 +01:00
|
|
|
'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'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|