aboutsummaryrefslogtreecommitdiffstats
path: root/.luacheckrc
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2018-12-23 16:16:21 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2018-12-23 16:16:21 +0000
commita763b9c316a2b9add0de247a456a71ca495310f8 (patch)
treeb88953d344eec4cf52bf20cbb32d47d27764cd03 /.luacheckrc
parent51b39f712d38cb69ede71d62e84c9079234cdb70 (diff)
downloadrspamd-a763b9c316a2b9add0de247a456a71ca495310f8.tar.gz
rspamd-a763b9c316a2b9add0de247a456a71ca495310f8.zip
[Minor] Remove too long strings in Lua code
Diffstat (limited to '.luacheckrc')
-rw-r--r--.luacheckrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/.luacheckrc b/.luacheckrc
index 7aa54dcf6..f9ec38d20 100644
--- a/.luacheckrc
+++ b/.luacheckrc
@@ -38,7 +38,6 @@ globals = {
ignore = {
'212', -- unused argument
'612', -- trailing whitespace
- '631', -- line is too long
'311', -- value assigned to variable X is unused
}
@@ -68,3 +67,6 @@ files['/**/src/rspamadm/*'].globals = {
files['test/functional/lua/test_coverage.lua'].globals = {
'__GLOBAL_COVERAGE_WATCHDOG'
}
+
+max_string_line_length = 500
+max_comment_line_length = 500 \ No newline at end of file