-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
27 lines (27 loc) · 847 Bytes
/
.eslintrc.js
File metadata and controls
27 lines (27 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module.exports = {
extends: ['plugin:@typescript-eslint/recommended', '@ehacke/eslint-config', 'plugin:import/typescript'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'import', 'simple-import-sort'],
rules: {
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'class-methods-use-this': 'off',
'jsdoc/check-param-names': 'off',
'jsdoc/require-jsdoc': 'off',
'require-jsdoc': 'off',
'unicorn/expiring-todo-comments': 'error',
'unicorn/filename-case': 'off',
},
settings: {
'import/resolver': {
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx', '.d.ts', '.json'],
},
typescript: {},
},
jsdoc: {
mode: 'typescript',
},
},
};