forked from geoman-io/leaflet-geoman
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.eslintrc
More file actions
26 lines (26 loc) · 482 Bytes
/
.eslintrc
File metadata and controls
26 lines (26 loc) · 482 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
{
"extends": ["airbnb-base", "prettier"],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"no-underscore-dangle": 0,
"import/prefer-default-export": 0,
"keyword-spacing": 0,
"no-param-reassign": 0,
"no-restricted-syntax": 0,
"guard-for-in": 0
},
"plugins": ["cypress"],
"env": {
"cypress/globals": true
},
"globals": {
"L": true,
"window": true,
"document": true
},
"ignorePatterns": [
"cypress/libs"
]
}