-
Notifications
You must be signed in to change notification settings - Fork 22
/
.eslintrc
73 lines (73 loc) · 1.67 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
{
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"no-unused-vars": "warn",
"no-console": "warn",
"no-constant-condition": "warn"
},
"globals": {
"$": true,
"JSSMS": true,
"DEBUG": true,
"ENABLE_DEBUGGER": true,
"ENABLE_COMPILER": true,
"WRITE_MODE": true,
"READ_MODE": true,
"ENABLE_SERVER_LOGGER": true,
"SYNC_MODE": true,
"ACCURATE": true,
"LITTLE_ENDIAN": true,
"FORCE_TYPED_ARRAYS": true,
"SUPPORT_TYPED_ARRAYS": true,
"FORCE_DATAVIEW": true,
"SUPPORT_DATAVIEW": true,
"FORCE_DESTRUCTURING": true,
"SUPPORT_DESTRUCTURING": true,
"SAMPLE_RATE": true,
"DEBUG_TIMING": true,
"REFRESH_EMULATION": true,
"ACCURATE_INTERRUPT_EMULATION": true,
"LIGHTGUN": true,
"VDP_SPRITE_COLLISIONS": true,
"PAGE_SIZE": true,
"NTSC": true,
"PAL": true,
"SMS_X_PIXELS": true,
"SMS_Y_PIXELS_NTSC": true,
"SMS_Y_PIXELS_PAL": true,
"SMS_WIDTH": true,
"SMS_HEIGHT": true,
"GG_WIDTH": true,
"GG_HEIGHT": true,
"P1_KEY_UP": true,
"P1_KEY_DOWN": true,
"P1_KEY_LEFT": true,
"P1_KEY_RIGHT": true,
"P1_KEY_FIRE1": true,
"P1_KEY_FIRE2": true,
"KEY_UP": true,
"KEY_DOWN": true,
"KEY_LEFT": true,
"KEY_RIGHT": true,
"KEY_FIRE1": true,
"KEY_FIRE2": true,
"KEY_START": true,
"HALT_SPEEDUP": true,
"OP_STATES": true,
"OP_CB_STATES": true,
"OP_DD_STATES": true,
"OP_INDEX_CB_STATES": true,
"OP_ED_STATES": true,
"Recompiler": true,
"SyncWriter": true,
"SyncReader": true,
"opcodeTable": true
}
}