UNPKG

380 BPlain TextView Raw
1{
2 "extends": [
3 "eslint:recommended"
4 ],
5 "env": {
6 "node": true,
7 "mocha": true
8 },
9 "globals": {
10 "Promise": true
11 },
12 "parserOptions": {
13 "ecmaVersion": 2017
14 },
15 "plugins": [
16 "prettier"
17 ],
18 "rules": {
19 "no-console": 0,
20 "prettier/prettier": ["error", {
21 "singleQuote": true,
22 "tabWidth": 2,
23 "printWidth": 100
24 }]
25 }
26}