forked from jacksonbenete/email_terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
76 lines (76 loc) · 2.1 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
{
"env": {
"browser": true,
"node": false
},
"parserOptions": { "ecmaVersion": 12 },
"extends": ["strict", "jquery"],
"globals": {
"$": false,
"allowedSoftwares": false,
"cmdLine_": false,
"document": false,
"dweet": false,
"glitchImage": false,
"hackRevealText": false,
"kernel": false,
"localStorage": false,
"logged": true,
"mailList": true,
"output_": false,
"output": false,
"p5": false,
"particleImage": false,
"requestAnimationFrame": false,
"software": false,
"softwareInfo": true,
"serverDatabase": true,
"setHeader": false,
"system": true,
"term": true,
"userDatabase": true,
"userList": true,
"window": false,
"C": true,
"R": true,
"S": true,
"T": true,
"AddressIsEmptyError": false,
"AddressNotFoundError": false,
"AlreadyOnServerError": false,
"CommandNotFoundError": false,
"InvalidCommandParameter": false,
"InvalidCredsSyntaxError": false,
"InvalidMessageKeyError": false,
"InvalidPasswordError": false,
"JsonFetchParseError": false,
"MailServerIsEmptyError": false,
"ServerRequireUsernameError": false,
"UnknownUserError": false,
"UsernameIsEmptyError": false
},
"rules": {
"array-element-newline": ["error", "consistent"],
"complexity": 0,
"id-blacklist": 0,
"id-match": 0,
"id-length": 0,
"indent": ["error", 4],
"init-declarations": 0,
"lines-around-comment": 0,
"line-comment-position": 0,
"max-len": 0,
"new-cap": 0,
"no-bitwise": 0,
"no-console": 0,
"no-inline-comments": 0,
"no-invalid-this": 0,
"no-magic-numbers": 0,
"no-mixed-operators": 0,
"no-new": 0,
"no-underscore-dangle": 0,
"no-use-before-define": 0,
"no-warning-comments": 0,
"prefer-destructuring": 0
}
}