Taming the linter again
Skyweave CI Rituals / Luacheck static analysis (push) Failing after 5s
Skyweave CI Rituals / Rite of Unit Inquisition (Busted) (push) Has been skipped

This commit is contained in:
wes
2025-06-12 08:40:16 -04:00
parent 4688a5d22e
commit 442ecd1290
+14
View File
@@ -36,3 +36,17 @@ ignore = {
"213", "213",
"631" "631"
} }
-- Telling the linter to ignore Busted framework related keywords within the spec dir
['spec/'] = {
-- It inherits the global rules and adds these new ones.
read_globals = {
'describe',
'it',
'assert', -- Busted extends the standard assert library.
'before_each', -- Adding other common Busted globals for future use.
'after_each',
'setup',
'teardown'
}
}