blob: 57fd0db4d158109a4579e9cd78e195a253cb0a72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
std = luajit
-- Rerun tests only if their modification time changed.
cache = true
-- Glorious list of warnings: https://luacheck.readthedocs.io/en/stable/warnings.html
ignore = {
"311" -- Value assigned to a local variable is unused.
}
-- Exclude test files
exclude_files = { "spec/" }
-- Global objects defined by the C code
read_globals = {
"vim",
}
|