-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
33 lines (33 loc) · 924 Bytes
/
.eslintrc.json
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
{
"env": {
"commonjs": true,
"es6": true,
"node": true
},
"extends": ["plugin:prettier/recommended", "eslint:recommended"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true,
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": ["prettier"],
"rules": {
"eqeqeq": ["error", "always"],
"id-length": ["error", { "exceptions": ["x", "y", "z"], "min": 2, "properties": "never" }],
"linebreak-style": ["error", "unix"],
"no-console": "warn",
"no-implicit-coercion": "error",
"no-multi-assign": "error",
"no-param-reassign": "error",
"no-ternary": "warn",
"prettier/prettier": "error",
"quotes": ["error", "double", { "allowTemplateLiterals": true, "avoidEscape": true }],
"semi": ["error", "always"],
"yoda": "error"
}
}