generated from NHSDigital/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
77 lines (77 loc) · 1.55 KB
/
.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"root": true,
"env": {
"node": true,
"es6": true,
"jest": true
},
"ignorePatterns": ["lib"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"plugins": ["@typescript-eslint", "import-newlines"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"rules": {
"block-spacing": "error",
"brace-style": ["error", "1tbs"],
"comma-dangle": ["error", "never"],
"comma-spacing": [
"error",
{
"before": false,
"after": true
}
],
"dot-location": ["error", "property"],
"eol-last": ["error", "always"],
"eqeqeq": "error",
"func-call-spacing": "error",
"func-style": [
"error",
"declaration",
{
"allowArrowFunctions": true
}
],
"import-newlines/enforce": [
"error",
{
"items": 3,
"max-len": 120,
"semi": false
}
],
"indent": [
"error",
2,
{
"SwitchCase": 1
}
],
"max-len": ["error", 120],
"no-multi-spaces": "error",
"no-multiple-empty-lines": [
"error",
{
"max": 1
}
],
"no-trailing-spaces": "error",
"object-curly-spacing": ["error", "never"],
"quotes": [
"error",
"double",
{
"allowTemplateLiterals": true,
"avoidEscape": true
}
],
"semi": ["error", "never"],
"@typescript-eslint/no-explicit-any": "off"
}
}