31 lines
441 B
Lua
31 lines
441 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
|
|
}
|
|
|
|
|
|
exclude_files = {
|
|
".install/**",
|
|
".luarocks/**",
|
|
--"spec/fixtures/invalid-module.lua",
|
|
--"spec-old-api/fixtures/invalid-module.lua",
|
|
}
|
|
|