Files
impostor/.luacheckrc
Zsolt Tasnadi 03b6567c08
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Timer and Day modules
2026-03-03 19:51:22 +01:00

68 lines
1020 B
Lua

-- .luacheckrc
-- Configuration for luacheck
globals = {
"Focus",
"Day",
"Timer",
"Util",
"Decision",
"Situation",
"Screen",
"Sprite",
"UI",
"Print",
"Input",
"Audio",
"Config",
"Context",
"Meter",
"Minigame",
"Window",
"SplashWindow",
"IntroWindow",
"MenuWindow",
"GameWindow",
"PopupWindow",
"ConfigurationWindow",
"AudioTestWindow",
"MinigameButtonMashWindow",
"MinigameRhythmWindow",
"MinigameDDRWindow",
"mset",
"mget",
"btnp",
"keyp",
"music",
"sfx",
"spr",
"rect",
"rectb",
"circ",
"circb",
"cls",
"tri",
"pix",
"line",
"Songs",
"frame_from_beat",
"beats_to_pattern",
"MapBedroom",
"TIC",
"exit",
"trace",
"index_menu",
"Map",
"map",
}
-- Exclude certain warnings globally
exclude_warnings = {
"undefined_global", -- Will be covered by 'globals' table
"redefined_loop_variable", -- Common in Lua for iterators
}
-- Options for unused variables
std = "lua51" -- Assuming Lua 5.1, common for TIC-80