From beb22299c52801aa2a2bed77146b0285438cc707 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Fri, 8 Jul 2016 19:20:49 +0200 Subject: [PATCH] luacheckrc: Ignore assert helper functions used in tests/* --- .luacheckrc | 11 +++++++++++ 1 file changed, 11 insertions(+) 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", + }; +} -- 2.30.2