forked from Automattic/simplenote-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
45 lines (45 loc) · 958 Bytes
/
.eslintrc.json
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
{
"parser": "babel-eslint",
"env": {
"browser": true,
"es6": true,
"jest/globals": true,
"mocha": true,
"node": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 6,
"sourceType": "module"
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended",
"plugin:react/recommended",
"prettier",
"prettier/react"
],
"plugins": ["eslint-plugin-react", "jest", "prettier"],
"rules": {
"eqeqeq": ["error", "always"],
"no-console": "warn",
"no-lonely-if": "error",
"no-shadow": "warn",
"no-spaced-func": "error",
"prettier/prettier": [
"error",
{
"bracketSpacing": true,
"singleQuote": true,
"trailingComma": "es5"
}
],
"react/display-name": "warn",
"react/no-deprecated": "warn",
"react/no-string-refs": "warn",
"react/prop-types": "warn",
"vars-on-top": "error"
}
}