aboutsummaryrefslogtreecommitdiffstats
path: root/.luacheckrc
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-07-08 19:20:49 +0200
committerKim Alvefur <zash@zash.se>2016-07-08 19:20:49 +0200
commitc53e625e427b1197b45ac9bbdf192cb07c6f2285 (patch)
tree721e3f0fed3aed6e2c57c02290b5f2f13149c038 /.luacheckrc
parentbd4e6a36a1730d40dc2d0c65064c0aaf6064d1bd (diff)
downloadprosody-c53e625e427b1197b45ac9bbdf192cb07c6f2285.tar.gz
prosody-c53e625e427b1197b45ac9bbdf192cb07c6f2285.zip
luacheckrc: Ignore assert helper functions used in tests/*
Diffstat (limited to '.luacheckrc')
-rw-r--r--.luacheckrc11
1 files changed, 11 insertions, 0 deletions
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",
+ };
+}