-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
22 lines (21 loc) · 750 Bytes
/
.eslintrc.js
File metadata and controls
22 lines (21 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module.exports = {
parser: '@typescript-eslint/parser',
extends: [
'plugin:prettier/recommended',
],
plugins: ['@typescript-eslint'],
settings: {},
rules: {
'@typescript-eslint/no-var-requires': ['off'],
'@typescript-eslint/no-explicit-any': ['off'],
'@typescript-eslint/explicit-function-return-type': ['off'],
'@typescript-eslint/explicit-module-boundary-types': ['off'],
'@typescript-eslint/curly': ['off'],
'no-debugger': ['warn'],
'react/display-name': ['off'],
'react/prop-types': ['off'],
'react/jsx-no-target-blank': ['off'],
semi: ['warn', 'never'],
'no-console': ['warn', { allow: ['warn', 'error', 'info'] }],
},
}