-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.eslintrc.js
58 lines (57 loc) · 1.37 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
"use strict";
module.exports = {
env: {
es6: true,
node: true,
jest: true
},
globals: {
document: true,
window: true,
jasmine: true,
__static: true
},
extends: ["eslint:recommended", "plugin:react/recommended"],
plugins: ["react", "import", "fp", "unicorn"],
rules: {
curly: "error",
"no-empty": "off",
"no-else-return": "error",
"no-inner-declarations": "error",
"no-unneeded-ternary": "error",
"no-useless-return": "error",
"no-var": "error",
"no-new": "error",
"no-undef-init": "error",
"no-self-compare": "error",
"no-throw-literal": "error",
"no-useless-concat": "error",
"no-use-before-define": "error",
"no-unused-expressions": "error",
"no-duplicate-imports": "error",
"react/display-name": "off",
"react/no-deprecated": "error",
"react/prop-types": "off",
eqeqeq: "error",
complexity: "error",
"block-scoped-var": "error",
"dot-notation": "error",
"one-var": ["error", "never"],
"prefer-arrow-callback": "error",
"prefer-const": "error",
strict: "error",
"symbol-description": "error",
"max-depth": "error",
"max-lines": "error",
"max-nested-callbacks": "error"
},
parserOptions: {
ecmaFeatures: {
jsx: true,
modules: true
},
ecmaVersion: 2017,
sourceType: "module"
},
parser: "babel-eslint"
};