-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.eslintrc
72 lines (72 loc) · 1.71 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
{
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"newline-per-chained-call": 0,
"arrow-body-style": 0
},
"globals": {
"BODYPART_COST": true,
"CREEP_LIFE_TIME": true,
"Game": true,
"Creep": true,
"LOOK_CREEPS": true,
"StructureController": true,
"StructureExtension": true,
"StructureLink": true,
"StructureRampart": true,
"StructureSpawn": true,
"StructureTower": true,
"StructureWall": true,
"Room": true,
"RoomPosition": true,
"Source": true,
"Spawn": true,
"Structure": true,
"Flag": true,
"MOVE": true,
"WORK": true,
"CARRY": true,
"CLAIM": true,
"ATTACK": true,
"RANGED_ATTACK": true,
"HEAL": true,
"TOUGH": true,
"Energy": true,
"COLOR_YELLOW": true,
"CONTROLLER_STRUCTURES": true,
"FIND_CONSTRUCTION_SITES": true,
"FIND_DROPPED_Resources": true,
"FIND_EXIT": true,
"FIND_FLAGS": true,
"FIND_HOSTILE_CREEPS": true,
"FIND_MINERALS": true,
"FIND_MY_CREEPS": true,
"FIND_MY_SPAWNS": true,
"FIND_MY_STRUCTURES": true,
"FIND_SOURCES": true,
"FIND_STRUCTURES": true,
"RESOURCE_ENERGY": true,
"STRUCTURE_CONTAINER": true,
"STRUCTURE_EXTENSION": true,
"STRUCTURE_EXTRACTOR": true,
"STRUCTURE_LINK": true,
"STRUCTURE_OBSERVER": true,
"STRUCTURE_RAMPART": true,
"STRUCTURE_ROAD": true,
"STRUCTURE_SPAWN": true,
"STRUCTURE_STORAGE": true,
"STRUCTURE_TERMINAL": true,
"STRUCTURE_TOWER": true,
"STRUCTURE_WALL": true,
"Memory": true,
"TOP": true,
"TOP_RIGHT": true,
"RIGHT": true,
"BOTTOM_RIGHT": true,
"BOTTOM": true,
"BOTTOM_LEFT": true,
"LEFT": true,
"TOP_LEFT": true
}
}