-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
32 lines (32 loc) · 818 Bytes
/
.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
{
"parser": "babel-eslint",
"extends": "thanhpcc",
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true,
"legacyDecorators": true
}
},
"rules": {
"arrow-body-style": "warn",
"lines-between-class-members": "off",
"no-use-before-define": "warn",
"implicit-arrow-linebreak": "off",
"react/prop-types": "off",
"comma-dangle": "off",
"no-unused-expressions": "off",
"global-require": "off",
"no-underscore-dangle": "off",
"no-param-reassign": "off",
"import/no-unresolved": "off",
"import/no-extraneous-dependencies": "off",
"no-mixed-operators": "off",
"camelcase": "off",
"one-var": "off",
"no-nested-ternary": "off",
"no-alert": "off",
"no-restricted-syntax": "off",
"guard-for-in": "off"
}
}