forked from PrateekAgarwal20/google-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
35 lines (34 loc) · 722 Bytes
/
.eslintrc.json
File metadata and controls
35 lines (34 loc) · 722 Bytes
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
{
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"env": {
"browser": true,
"node": true
},
"parser": "babel-eslint",
"extends": "eslint:recommended",
"rules": {
"linebreak-style": [2, "unix"],
"default-case": 2,
"indent": [1, 2],
"no-unexpected-multiline": 2,
"semi": ["error", "always"],
"consistent-return": 2,
"no-fallthrough": 2,
"default-case": 2,
"no-console": 0,
"quotes": 0,
"guard-for-in": 2,
"no-unused-vars": [2, { "args": "none", "vars": "local"}],
"eqeqeq": 2,
"no-native-reassign": 2,
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/react-in-jsx-scope": 2
},
"plugins": [
"react"
]
}