-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
53 lines (53 loc) · 1.17 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
{
"root": true,
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false,
"ecmaVersion": 2016,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"extends": [
"google",
"eslint:recommended",
"plugin:flowtype/recommended",
"plugin:react/recommended",
"prettier"
],
"plugins": ["flowtype", "prettier", "react", "filenames", "html", "html-erb"],
"env": {
"browser": true,
"es6": true,
"node": true,
"jest": true
},
"rules": {
"no-unused-expressions": [
"error",
{
"allowTaggedTemplates": true
}
],
"consistent-return": ["error"],
"no-console": "warn",
"no-inner-declarations": "off",
"quotes": ["error", "backtick"],
"require-jsdoc": "off",
"valid-jsdoc": "off",
"no-invalid-this": "off",
"no-unused-vars": "warn",
"filenames/match-regex": ["error", "^[a-z-\\d\\.]+$", true],
"prettier/prettier": "error",
"react/display-name": "off",
"react/jsx-key": "warn",
"react/no-unescaped-entities": "off",
"react/prop-types": "warn",
},
"settings": {
"react": {
"version": "16.9.0"
}
}
}