-
Notifications
You must be signed in to change notification settings - Fork 6
/
.eslintrc.js
47 lines (47 loc) · 1.55 KB
/
.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'prettier', 'react-hooks'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:react/recommended',
'prettier',
],
settings: {
react: {
version: (() => {
const mallardPackage = require('./projects/Mallard/package.json')
return mallardPackage.dependencies.react.substring(1)
})(),
},
},
rules: {
'prettier/prettier': 'error',
'@typescript-eslint/explicit-member-accessibility': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'react/prop-types': 'off',
'@typescript-eslint/consistent-type-assertions': 'error',
'@typescript-eslint/camelcase': 'off',
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'error',
'react/display-name': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
overrides: [
{
files: ['*.d.ts'],
rules: {
'@typescript-eslint/no-explicit-any': 'off',
},
},
{
files: ['*.js'],
rules: { '@typescript-eslint/no-var-requires': 'off' },
},
{
/* Using a '?' mark below so that it matches regardless of case-insensitive
* filesystem (MacOS...)" */
files: ['projects/?allard/src/**/*'],
rules: { '@typescript-eslint/no-unused-vars': 'error' },
},
],
}