-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.luacheckrc
More file actions
110 lines (104 loc) · 1.39 KB
/
Copy path.luacheckrc
File metadata and controls
110 lines (104 loc) · 1.39 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
return {
std = 'lua51+love',
globals = {
"love.graphics.newFontMSDF",
"love.arg.parseGameArguments",
"love.graphics.isCreated",
"love.handlers",
"DEV",
"PROF",
"PROF_CAPTURE",
"GIT_COMMIT",
"TODO",
"DIALOGUE_FIN",
"JPROF",
"MAX_Z",
"GAME_SPEED_MULT",
"CAM_BAR_RATIO",
-- Standard libraries
"UTF8",
"FFI",
"Socket",
"Bit",
-- External modules
"Anim8",
"Bitser",
"Bump",
"Concord",
"Enum",
"Flux",
"Gamera",
"Lily",
"Log",
"LoveInk",
"LoveSplash",
"Lume",
"ReflowPrint",
"SDF",
"Semver",
"Slab",
"Splashes",
"TLE",
"Timer",
-- Batteries
"class",
"functional",
"intersect",
"mathx",
"pretty",
"sort",
"stringx",
"tablex",
"timer",
"vec2",
"vec3",
-- Game globals
"Enums",
"Data",
"Renderers",
"ParticleSystems",
"Atlases",
"Ctor",
"Beehive",
"Behaviors",
"Assemblages",
-- Core modules
"Animation",
"Audio",
"Cache",
"Canvas",
"Config",
"Dialogues",
"DevTools",
"ErrorHandler",
"Fade",
"Generator",
"Helper",
"BloodBar",
"Image",
"Info",
"Inputs",
"Items",
"LoadingScreen",
"Notes",
"Outliner",
"Palette",
"Preloader",
"Resources",
"Save",
"Settings",
"Shaders",
"UIWrapper",
"Utils",
"WindowMode",
"ECS",
"GameStates",
},
ignore = {
'212', -- unused argument
},
exclude_files = {
'./src/modules/*',
'./modules/*',
}
}