|
|
@ -7,7 +7,7 @@ module.exports = {
|
|
|
|
'eslint-config-prettier'
|
|
|
|
'eslint-config-prettier'
|
|
|
|
],
|
|
|
|
],
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
plugins: ['@typescript-eslint', 'eslint-plugin-jest'],
|
|
|
|
plugins: ['@typescript-eslint', 'eslint-plugin-node', 'eslint-plugin-jest'],
|
|
|
|
rules: {
|
|
|
|
rules: {
|
|
|
|
'@typescript-eslint/no-require-imports': 'error',
|
|
|
|
'@typescript-eslint/no-require-imports': 'error',
|
|
|
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
|
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
|
@ -28,7 +28,8 @@ module.exports = {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'no-control-regex': 'off',
|
|
|
|
'no-control-regex': 'off',
|
|
|
|
'no-constant-condition': ['error', {checkLoops: false}]
|
|
|
|
'no-constant-condition': ['error', {checkLoops: false}],
|
|
|
|
|
|
|
|
'node/no-extraneous-import': 'error'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
overrides: [
|
|
|
|
overrides: [
|
|
|
|
{
|
|
|
|
{
|
|
|
|