- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackup.json
More file actions
Latest commit
21 lines (21 loc) · 400 Bytes
/
Copy pathbackup.json
File metadata and controls
21 lines (21 loc) · 400 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"env": {
"es6": true,
"node": true
},
"extends": ["airbnb-base", "prettier"],
"plugins": ["prettier"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"comma-dangle": ["error", "never"],
"no-console": "off",
"prettier/prettier": ["error"]
}
}