mirror of
https://github.com/TangentFoxy/lua-date.git
synced 2025-07-27 18:42:18 +00:00
36 lines
431 B
Lua
36 lines
431 B
Lua
--std = "ngx_lua+busted"
|
|
unused_args = false
|
|
redefined = false
|
|
max_line_length = false
|
|
|
|
|
|
globals = {
|
|
--"_KONG",
|
|
--"kong",
|
|
--"ngx.IS_CLI",
|
|
}
|
|
|
|
|
|
not_globals = {
|
|
"string.len",
|
|
"table.getn",
|
|
}
|
|
|
|
|
|
ignore = {
|
|
--"6.", -- ignore whitespace warnings
|
|
}
|
|
|
|
include_files = {
|
|
"**/*.lua",
|
|
"*.rockspec",
|
|
".busted",
|
|
".luacheckrc",
|
|
}
|
|
|
|
exclude_files = {
|
|
"here/**",
|
|
"samples/**",
|
|
}
|
|
|