mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-21 08:08:29 -04:00
13 lines
471 B
Lua
13 lines
471 B
Lua
|
|
-- Don't check globals yet. This requires us to add a list of all the AP bindings
|
|
global = false
|
|
|
|
-- https://luacheck.readthedocs.io/en/stable/warnings.html
|
|
ignore = {"631", -- Line is too long
|
|
"611", -- A line consists of nothing but whitespace.
|
|
"612", -- A line contains trailing whitespace.
|
|
"614"} -- Trailing whitespace in a comment.
|
|
|
|
-- These lua scripts are not for running on AP
|
|
exclude_files = {"Tools/CHDK-Scripts/*", "modules/*"}
|