diff options
author | Kim Alvefur <zash@zash.se> | 2017-11-10 05:34:29 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-11-10 05:34:29 +0100 |
commit | 599acace643b98ea99f64b2544591e65caa9c533 (patch) | |
tree | bec0647890eeef89c49ca00769cf014e3fd61d91 /.luacheckrc | |
parent | e6d2431c5289e196554e4983730bc47fd24b0b1f (diff) | |
download | prosody-599acace643b98ea99f64b2544591e65caa9c533.tar.gz prosody-599acace643b98ea99f64b2544591e65caa9c533.zip |
luacheckrc: Ignore long commets (e.g. license in util.sasl)
Diffstat (limited to '.luacheckrc')
-rw-r--r-- | .luacheckrc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.luacheckrc b/.luacheckrc index fcf2f000..b5ad23e0 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -13,6 +13,10 @@ files["core/"] = { read_globals = { "prosody", "hosts" }; globals = { "prosody.hosts.?", "hosts.?" }; } +files["util/"] = { + -- Ignore unwrapped license text + max_comment_line_length = false; +} files["plugins/"] = { read_globals = { -- Module instance |