ardupilot/libraries/AP_Scripting/tests/check.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
542 B
JSON
Raw Normal View History

{ // lua-language-server config for checking
"runtime.version": "Lua 5.3",
"runtime.builtin": {
// Not all of the standard functionality is available
"coroutine": "disable",
"os": "disable",
"debug": "disable",
"ffi": "disable",
"jit": "disable",
"table.clear": "disable",
"table.new": "disable"
},
// These lua scripts are not for running on AP
"workspace.ignoreDir": ["Tools/CHDK-Scripts/*", "modules/*", "libraries/AP_Scripting/tests/luacheck.lua" ],
}