-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.eslintrc.json
More file actions
79 lines (79 loc) · 1.88 KB
/
.eslintrc.json
File metadata and controls
79 lines (79 loc) · 1.88 KB
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
{
"root": true,
"extends": [
"airbnb-base",
"plugin:react/recommended"
],
"env": {
"browser": true,
"es6": true,
"jest": true,
"mocha": true,
"node": true
},
"globals": {
"window": "readonly"
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"react"
],
"rules": {
"comma-dangle": 0,
"consistent-return": 0,
"curly": ["error", "multi-line"],
"eqeqeq": ["error", "always", { "null": "ignore" }],
"import/extensions": "off",
"import/no-unresolved": "off",
"jsx-quotes": ["error", "prefer-double"],
"max-len": ["error", { "code": 150, "tabWidth": 2 }],
"new-cap": 0,
"no-console": ["error", { "allow": ["error", "info", "warn"] }],
"no-param-reassign": 0,
"no-shadow": ["error", {
"allow": ["req", "res", "err"]
}],
"no-restricted-imports": ["error", { "paths": ["lodash"] }],
"object-curly-newline": "off",
"one-var": 0,
"one-var-declaration-per-line": 0,
"react/jsx-uses-vars": [2],
"require-jsdoc": ["error", {
"require": {
"FunctionDeclaration": true,
"MethodDefinition": true,
"ClassDeclaration": true
}
}],
"valid-jsdoc": ["error", {
"requireReturn": true,
"requireReturnType": true,
"requireParamDescription": false,
"requireReturnDescription": true
}]
},
"settings": {
"react": {
"createClass": "createReactClass",
"pragma": "React",
"version": "detect",
"flowVersion": "0.53"
},
"propWrapperFunctions": [
"forbidExtraProps",
{"property": "freeze", "object": "Object"},
{"property": "myFavoriteWrapper"}
],
"linkComponents": [
"Hyperlink",
{"name": "Link", "linkAttribute": "to"}
]
}
}