-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
37 lines (37 loc) · 903 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
34
35
36
37
{
"root": true,
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": ["**/*.d.ts"],
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"env": {
"node": true,
"jest": true,
"commonjs": true,
"mongo": true
},
"rules": {
"no-console": 1,
"indent": ["error", 2],
"global-require": ["error"],
"handle-callback-err": ["error"],
"quotes": ["error", "single", {
"allowTemplateLiterals": true
}],
"no-template-curly-in-string": ["error"],
"no-restricted-syntax": [
"error",
{
"selector": "TemplateLiteral:not([quasis.length > 1])",
"message": "Template literals with a single expression should use string concatenation instead"
}
]
}
}