-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc.js
43 lines (43 loc) · 1.07 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
module.exports = {
root: true,
extends: ['@hai-platform'],
overrides: [
{
files: ['*.js', '*.mjs', '*.cjs'],
rules: {
'no-console': [
'warn',
{
allow: ['info', 'warn', 'error'],
},
],
},
},
{
files: ['*.ts', '*.tsx'],
extends: ['@hai-platform/react'],
parserOptions: {
project: ['./apps/**/tsconfig.json'],
tsconfigRootDir: __dirname,
},
rules: {
'react/prop-types': [2, { ignore: ['children'] }],
'require-await': 'error',
'import/no-extraneous-dependencies': 'off',
'react/require-default-props': 'off',
'react/button-has-type': 'off',
'no-underscore-dangle': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'class-methods-use-this': 'off',
'prefer-template': 'off',
'import/prefer-default-export': 'off',
'no-console': [
'warn',
{
allow: ['info', 'warn', 'error'],
},
],
},
},
],
}