2021-03-16 18:37:45 +00:00
|
|
|
module.exports = {
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
extends: ['plugin:@typescript-eslint/recommended', 'prettier'],
|
|
|
|
plugins: ['@typescript-eslint', 'prettier'],
|
|
|
|
rules: {
|
2021-04-21 16:14:44 +00:00
|
|
|
'@typescript-eslint/ban-ts-comment': 'off',
|
2021-03-16 18:37:45 +00:00
|
|
|
'@typescript-eslint/camelcase': 'off',
|
|
|
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
2021-04-01 16:25:28 +00:00
|
|
|
'@typescript-eslint/no-empty-function': 'off',
|
|
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
|
|
'@typescript-eslint/no-unused-vars': 'off',
|
2021-03-16 18:37:45 +00:00
|
|
|
'@typescript-eslint/no-use-before-define': 'off',
|
|
|
|
'@typescript-eslint/no-var-requires': 'off',
|
2021-04-06 21:54:55 +00:00
|
|
|
'no-console': 'warn',
|
2021-04-01 16:25:28 +00:00
|
|
|
'no-shadow': 'error',
|
2021-03-16 18:37:45 +00:00
|
|
|
'prefer-const': 'off',
|
2021-03-16 18:43:23 +00:00
|
|
|
'prefer-rest-params': 'off',
|
2021-08-24 05:18:27 +00:00
|
|
|
'require-jsdoc': 'off',
|
2021-03-16 18:37:45 +00:00
|
|
|
},
|
|
|
|
};
|