generated from cemreyavuz/reactjs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
32 lines (32 loc) · 786 Bytes
/
.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
{
"parser": "babel-eslint",
"extends": [
"airbnb",
"plugin:cypress/recommended"
],
"globals": {
"document": false,
"localStorage": true,
"window": true
},
"rules": {
"linebreak-style": 0,
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/destructuring-assignment": 0,
"react/prefer-stateless-function": 0,
"max-len": ["error", 150, 2, {
"ignoreUrls": true,
"ignoreComments": true,
"ignoreRegExpLiterals": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": false
}],
"import/no-unresolved": "off",
"react/jsx-boolean-value": "off",
"template-curly-spacing" : "off",
"indent" : "off"
},
"plugins": [
"cypress"
]
}