-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
33 lines (33 loc) · 863 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
33
{
"parserOptions": {
"sourceType": "module",
"ecmaVersion": "latest"
},
"rules": {
"semi": "error",
"no-eval": "error",
"no-empty-function": "error",
"no-inline-comments": "error",
"no-multi-spaces": "error",
"no-var": "error",
"indent": ["error", "space"],
"no-multiple-empty-lines": ["error", { "max": 2, "maxEOF": 1, "maxBOF": 0 }],
"max-nested-callbacks": ["error", { "max": 3 }],
"space-in-parens": "error",
"no-floating-decimal": "error",
"no-trailing-spaces": "error",
"prettier/prettier": [
"error",
{
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "avoid"
}
]
}
}