summaryrefslogtreecommitdiff
path: root/.luacheckrc
blob: 4874cdb462cda26a443dec4970fe14ea9e8c5b42 (plain)
1
2
3
4
5
6
7
8
9
10
11
std = luajit
cache = true
codes = true
ignore = {
    "111", -- Setting an undefined global variable. (for ok, _ = pcall...)
    "211", -- Unused local variable.
    "411", -- Redefining a local variable.
}
read_globals = { "vim", "describe", "it", "bit", "assert", "before_each", "after_each" }