-
-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy path.luacheckrc
More file actions
37 lines (37 loc) · 681 Bytes
/
.luacheckrc
File metadata and controls
37 lines (37 loc) · 681 Bytes
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
30
31
32
33
34
35
36
37
std = "min"
include_files = {
"**/*.lua",
"sile.in",
"*.rockspec",
".busted",
".luacheckrc",
}
exclude_files = {
"benchmark-*",
"compare-*",
"lua-libraries",
"lua_modules",
"sile-*",
"target",
"vendor",
".lua",
".luarocks",
".install",
}
files["**/*_spec.lua"] = {
std = "+busted",
}
globals = {
package = { fields = { "searchpath" } },
"SILE",
"SU",
"luautf8",
"pl",
"fluent",
}
max_line_length = false
ignore = {
"212/self", -- allow unused argument self so abstract functions can look the same as finished ones
"581", -- operator order warning doesn't account for custom table metamethods
}
-- vim: ft=lua