-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.js
54 lines (54 loc) · 1.2 KB
/
.eslintrc.js
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
// eslint-disable-next-line no-undef
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint", "spellcheck"],
extends: [
"plugin:jest/recommended",
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/@typescript-eslint",
],
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"spellcheck/spell-checker": [1,
{
"identifiers": false,
"templates": true,
"lang": "en_US",
"skipWords": [
"BerkShares",
"checkcircleo",
"exclamationcircleo",
"closecircleo",
"Dwolla",
"arrowright",
"arrowleft",
"Firstname",
"Lastname",
"Businessname",
"American",
"Mastercard",
"Deployer",
"Barrington",
"Plex",
"Passcode",
"Onboarding",
"mainscreen",
"Signup",
"Cashout",
"Loadup",
"Cognito",
"esraa",
"signinresponse",
"signin",
"signedup",
"webhook",
"authed"
],
"minLength" : 4
}
]
}
};