aboutsummaryrefslogtreecommitdiff
path: root/.luacheckrc
blob: a3b4f63c393b200a3239cee145d6b410177ca3ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
unused_args     = false
redefined       = false
max_line_length = false

not_globals = {
    "string.len",
    "table.getn",
}

include_files = {
    "**/*.lua",
    "**/*.rockspec",
    ".busted",
    ".luacheckrc",
}

exclude_files = {
    "test/*.lua",
    "test/**/*.lua",
    "samples/*.lua",
    "samples/**/*.lua",
    "gem/*.lua",
    "gem/**/*.lua",
    -- GH Actions Lua Environment
    ".lua",
    ".luarocks",
    ".install",
}