-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
.eslintrc.js
32 lines (32 loc) · 1007 Bytes
/
.eslintrc.js
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
28
29
30
31
32
// eslint-disable-next-line no-undef
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.eslint.json'
},
plugins: ['@typescript-eslint', 'eslint-plugin-tsdoc', 'prettier'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'prettier',
'plugin:prettier/recommended'
],
rules: {
'lines-between-class-members': ['error', 'always'],
'@typescript-eslint/no-explicit-any': [0],
'@typescript-eslint/ban-ts-ignore': [0],
'@typescript-eslint/no-use-before-define': [0],
'no-console': 'error',
'tsdoc/syntax': 'error',
'prettier/prettier': [
'error',
{
endOfLine: 'auto',
arrowParens: 'avoid'
}
]
}
};