From: Kim Alvefur Date: Fri, 8 Jul 2016 17:20:49 +0000 (+0200) Subject: luacheckrc: Ignore assert helper functions used in tests/* X-Git-Url: https://git.enpas.org/?p=prosody.git;a=commitdiff_plain;h=beb22299c52801aa2a2bed77146b0285438cc707 luacheckrc: Ignore assert helper functions used in tests/* --- diff --git a/.luacheckrc b/.luacheckrc index 590f9c37..2fc05e75 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -10,3 +10,14 @@ ignore = { "411/err", "421/err", "411/ok", "421/ok", "211/_ENV" } files["plugins/"] = { ignore = { "122/module" }; } +files["tests/"] = { + ignore = { + "113/assert_equal", + "113/assert_table", + "113/assert_function", + "113/assert_string", + "113/assert_boolean", + "113/assert_is", + "113/assert_is_not", + }; +}