forked from jeffpar/pcjs.v1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
50 lines (50 loc) · 978 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"globals": {
"Bus": true,
"CPU": true,
"CPU1500": true,
"CPU8080": true,
"Defs": true,
"Dbg8080": true,
"Debugger": true,
"Device": true,
"DL11": true,
"Input": true,
"IOPAGE": true,
"InvadersPorts": true,
"InvadersVideo": true,
"LED": true,
"LEDCtrl": true,
"Machine": true,
"Memory": true,
"Monitor": true,
"NumIO": true,
"PDP11": true,
"PDP11Dbg": true,
"PDP11Ops": true,
"Ports": true,
"RAM": true,
"ROM": true,
"StdIO": true,
"Time": true,
"Video": true,
"VT100Chips": true,
"VT100Keyboard": true,
"VT100Serial": true,
"VT100Video": true,
"WebIO": true,
"COMMAND": true,
"COMPILED": true,
"DEBUG": true,
"FACTORY": true,
"LITTLE_ENDIAN": true,
"MAXDEBUG": true,
"MESSAGE": true,
"VERSION": true
},
"rules": {
"no-useless-constructor": "off",
"no-confusing-arrow": "off",
"no-var": 1
}
}