-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.eslintrc.js
76 lines (76 loc) · 2.24 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
module.exports = {
parser: '@typescript-eslint/parser',
root: true,
env: {
browser: true,
es6: true,
},
plugins: ['@typescript-eslint'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
'eslint:recommended',
'plugin:react/recommended',
// 'airbnb-base',
'prettier',
'prettier/react',
],
// settings: {
// 'import/extensions': [
// 'error',
// 'ignorePackages',
// {
// js: 'never',
// jsx: 'never',
// ts: 'never',
// tsx: 'never',
// },
// ],
// 'import/resolver': {
// webpack: {
// config: {
// resolve: {
// extensions: ['.js', '.jsx', '.ts', '.tsx'],
// },
// },
// },
// },
// },
// ignorePatterns: ['*.d.ts'],
rules: {
// 'no-dupe-keys': 'error',
// 'no-duplicate-case': 'error',
// 'no-empty': ['error', { allowEmptyCatch: true }],
// 'no-ex-assign': 'error',
// 'no-extra-boolean-cast': 'error',
// curly: 'error',
// 'no-control-regex': 0,
// 'no-useless-escape': 0,
// camelcase: 0,
// 'no-console': 1,
// 'no-debugger': 0,
// 'no-alert': 2,
// 'no-var': 2,
// 'no-return-assign': 0,
// 'no-confusing-arrow': 0,
// 'no-param-reassign': [
// 'error',
// {
// props: false,
// },
// ],
// 'one-var': 0,
// 'react/no-danger': 2,
'@typescript-eslint/no-non-null-assertion': 0,
'react/display-name': 0,
'react/jsx-no-target-blank': 0,
'no-undef': 1,
'@typescript-eslint/ban-types': 0,
'no-empty': 1,
'no-unreachable': 1,
// 'global-require': 0,
// 'no-trailing-spaces': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
},
};