-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path.eslintrc
53 lines (53 loc) · 1.75 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
{
"parser": "babel-eslint",
"extends": [
"standard"
],
"rules": {
"space-before-function-paren": "off",
"immutable/no-let": 2,
"immutable/no-this": 2,
"immutable/no-mutation": 2,
// "jsdoc/check-alignment": 1, // Recommended
// "jsdoc/check-examples": 0,
// "jsdoc/check-indentation": 1,
// "jsdoc/check-param-names": 1, // Recommended
// "jsdoc/check-syntax": 1,
// "jsdoc/check-tag-names": 1, // Recommended
// "jsdoc/check-types": 1, // Recommended
// "jsdoc/implements-on-classes": 1, // Recommended
// "jsdoc/match-description": 1,
// "jsdoc/newline-after-description": 1, // Recommended
// "jsdoc/no-types": 1,
// "jsdoc/no-undefined-types": 1, // Recommended
// "jsdoc/require-description": 1,
// "jsdoc/require-description-complete-sentence": 1,
// "jsdoc/require-example": 1,
// "jsdoc/require-hyphen-before-param-description": 1,
// "jsdoc/require-jsdoc": 1, // Recommended
// "jsdoc/require-param": 1, // Recommended
// "jsdoc/require-param-description": 1, // Recommended
// "jsdoc/require-param-name": 1, // Recommended
// "jsdoc/require-param-type": 1, // Recommended
// "jsdoc/require-returns": 1, // Recommended
// "jsdoc/require-returns-check": 1, // Recommended
// "jsdoc/require-returns-description": 1, // Recommended
// "jsdoc/require-returns-type": 1, // Recommended
// "jsdoc/valid-types": 0 // Recommended
"jest/no-disabled-tests": "warn",
"jest/no-focused-tests": "error",
"jest/no-identical-title": "error",
"jest/prefer-to-have-length": "warn",
"jest/valid-expect": "error"
},
"plugins": [
"fp",
"immutable",
"jest"
],
"env": {
"jest/globals": true,
"jest": true,
"browser": true
}
}