-
Notifications
You must be signed in to change notification settings - Fork 40
/
.eslintrc
56 lines (56 loc) · 1.3 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
{
"extends": "airbnb",
"globals": {
"ConstructionSite": true,
"Creep": true,
"Deposit": true,
"Flag": true,
"Game": true,
"InterShardMemory": true,
"Memory": true,
"Mineral": true,
"Nuke": true,
"OwnedStructure": true,
"PathFinder": true,
"PowerCreep": true,
"RawMemory": true,
"Resource": true,
"Room": true,
"RoomObject": true,
"RoomPosition": true,
"RoomVisual": true,
"Ruin": true,
"Source": true,
"Store": true,
"Structure": true,
"StructureContainer": true,
"StructureController": true,
"StructureExtension": true,
"StructureExtractor": true,
"StructureFactory": true,
"StructureInvaderCore": true,
"StructureKeeperLair": true,
"StructureLab": true,
"StructureLink": true,
"StructureNuker": true,
"StructureObserver": true,
"StructurePortal": true,
"StructurePowerBank": true,
"StructurePowerSpawn": true,
"StructureRampart": true,
"StructureRoad": true,
"StructureSpawn": true,
"StructureStorage": true,
"StructureTerminal": true,
"StructureTower": true,
"StructureWall": true,
"Tombstone": true
},
"rules": {
"no-console": 0,
"arrow-body-style": 0,
"prefer-rest-params": 0,
"no-use-before-define": 0,
"strict": 0
}
}