generated from companieshouse/node-review-web-starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
34 lines (34 loc) · 794 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
34
{
"ignorePatterns": ["views/", "node_modules/"],
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module",
"ecmaFeatures": {}
},
"extends": ["standard"],
"parser": "@typescript-eslint/parser",
"overrides": [
{
"files": ["*.test.ts"],
"rules": {
"no-unused-expressions": "off"
}
}
],
"rules": {
"indent": ["error", 4],
"quotes": ["error", "double", { "allowTemplateLiterals": true }],
"semi": [2, "always"],
"no-unused-vars": "off",
"padded-blocks": "off"
},
"plugins": [
"@typescript-eslint"
],
"env": {
"node": true,
"commonjs": true,
"jest": true,
"es6": true
}
}