forked from alibaba/ice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
57 lines (52 loc) · 1.31 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
const { eslint, tslint, deepmerge } = require('@ice/spec');
const commonRules = {
'react/jsx-filename-extension': 0,
'no-underscore-dangle': 0,
'class-methods-use-this': 0,
'no-param-reassign': 0,
'comma-dangle': 0,
'prefer-object-spread': 0,
'import/named': 0,
// TODO: open rule indent, consider of MemberExpression
'indent': 0,
'semi': 2,
'react/react-in-jsx-scope': 0,
'jsx-a11y/html-has-lang': 0,
'react/static-property-placement': 0,
'no-multiple-empty-lines': 1,
'react/jsx-no-bind': 0
};
const jsRules = deepmerge(eslint, {
rules: {
...commonRules,
},
});
const tsRules = deepmerge(tslint, {
rules: {
...commonRules,
'@typescript-eslint/ban-types': 0,
'@typescript-eslint/ban-ts-comment': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/interface-name-prefix': 0,
'@typescript-eslint/explicit-function-return-type': 0,
'@typescript-eslint/no-var-requires': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'no-use-before-define': 0,
'no-unused-vars': 0,
'@typescript-eslint/no-unused-vars': 1,
'@typescript-eslint/ban-ts-ignore': 0
},
});
delete tsRules.root;
module.exports = {
...jsRules,
overrides: [
{
...tsRules,
files: ['**/*.ts', '**/*.tsx'],
},
],
env: {
'jest': true
}
};