Configuring luacheck to be a little more reasonable
Skyweave CI Rituals / Rite of Static Scrutiny (Luacheck) (push) Failing after 6s
Skyweave CI Rituals / Rite of Static Scrutiny (Luacheck) (push) Failing after 6s
This commit is contained in:
+15
@@ -19,3 +19,18 @@ read_globals = {
|
||||
"next",
|
||||
"rawget"
|
||||
}
|
||||
exclude_files = {
|
||||
"lib/",
|
||||
"src/"
|
||||
}
|
||||
-- Ignore specific, non-critical warnings by their numeric code.
|
||||
-- W111: Line is too long
|
||||
-- W211: Unused variable
|
||||
-- W212: Unused argument
|
||||
-- W213: Unused argument 'self'
|
||||
ignore = {
|
||||
"W111",
|
||||
"W211",
|
||||
"W212",
|
||||
"W213"
|
||||
}
|
||||
Reference in New Issue
Block a user