diff options
author | Kim Alvefur <zash@zash.se> | 2016-07-08 19:20:49 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-07-08 19:20:49 +0200 |
commit | c53e625e427b1197b45ac9bbdf192cb07c6f2285 (patch) | |
tree | 721e3f0fed3aed6e2c57c02290b5f2f13149c038 /.luacheckrc | |
parent | bd4e6a36a1730d40dc2d0c65064c0aaf6064d1bd (diff) | |
download | prosody-c53e625e427b1197b45ac9bbdf192cb07c6f2285.tar.gz prosody-c53e625e427b1197b45ac9bbdf192cb07c6f2285.zip |
luacheckrc: Ignore assert helper functions used in tests/*
Diffstat (limited to '.luacheckrc')
-rw-r--r-- | .luacheckrc | 11 |
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", + }; +} |