-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
101 lines (101 loc) · 2.64 KB
/
.eslintrc
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"root": true,
"env": {
"browser": true,
"es6": true,
"commonjs": true,
"node": true
},
"extends": [
"airbnb-base",
"eslint:recommended",
"plugin:react/recommended"
],
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true,
"ecmaVersion": 8,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"settings": {
"react": {
"createClass": "createReactClass",
"pragma": "React",
"version": "detect",
"flowVersion": "0.53"
}
},
"plugins": ["progress", "react"],
"rules": {
"no-param-reassign": 0,
"no-console": "off",
"semi": [
"error", "always"
],
"quotes": [
"error", "double"
],
"indent": [
"error", 4
],
"react/jsx-indent": [
"error",
4, {
"checkAttributes": true
}
],
"class-methods-use-this": 0,
"max-len": 0,
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"react/react-in-jsx-scope": "off",
"react/destructuring-assignment": "off",
"no-nested-ternary": "warn",
"react/prop-types": 0,
"prefer-destructuring": [
"warn", {
"VariableDeclarator": {
"array": false,
"object": true
},
"AssignmentExpression": {
"array": true,
"object": false
}
}, {
"enforceForRenamedProperties": false
}
],
"no-unused-expressions": ["error", { "allowShortCircuit": true, "allowTernary": true }],
"consistent-return": "off",
"global-require": "off",
"import/no-dynamic-require": "off",
"comma-dangle": [
"error", {
"arrays": "never",
"objects": "never",
"imports": "never",
"exports": "never",
"functions": "never"
}
],
"import/no-extraneous-dependencies": [
"error", {
"devDependencies": true,
"optionalDependencies": true,
"peerDependencies": true
}
],
"no-underscore-dangle": [
"error", {
"allow": ["_id"]
}
],
"no-plusplus": "off",
"eqeqeq": "off",
"progress/activate": 1
}
}