24 lines
644 B
Lua
24 lines
644 B
Lua
std = "lua51"
|
|
|
|
max_line_length = false
|
|
|
|
-- Cross-file globals set by Spearhead itself (no `require`/module system in the bundle)
|
|
globals = {
|
|
"SpearheadConfig",
|
|
"GlobalCapCallBacks",
|
|
"SpearheadAPI",
|
|
}
|
|
|
|
-- Reference: https://luacheck.readthedocs.io/en/stable/warnings.html
|
|
ignore = {
|
|
"614", -- Trailing whitespace in a comment
|
|
}
|
|
|
|
-- DCS Mission Scripting Environment API
|
|
read_globals = {
|
|
"env", "timer", "trigger", "world", "coalition", "country",
|
|
"AI", "Group", "Unit", "StaticObject", "SceneryObject",
|
|
"Airbase", "Weapon", "land", "atmosphere", "missionCommands",
|
|
"net", "lfs", "Object", "coord", "Controller"
|
|
}
|