mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:40:05 +08:00
17 lines
350 B
Plaintext
17 lines
350 B
Plaintext
|
cache = ".luacheckcache"
|
||
|
-- https://luacheck.readthedocs.io/en/stable/warnings.html
|
||
|
ignore = {
|
||
|
"211/_.*",
|
||
|
"212/_.*",
|
||
|
"213/_.*",
|
||
|
}
|
||
|
include_files = { "*.luacheckrc", "lua/**/*.lua", "tests/**/*.lua" }
|
||
|
globals = { "vim" }
|
||
|
std = "luajit"
|
||
|
|
||
|
files["tests/helpers/**/*.lua"] = {
|
||
|
read_globals = { "assert", "describe" },
|
||
|
}
|
||
|
|
||
|
-- vim: set filetype=lua :
|