diff options
author | Kim Alvefur <zash@zash.se> | 2022-05-30 17:12:58 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-05-30 17:12:58 +0200 |
commit | afe8199ba90062bb215e3f154549e7e793db955a (patch) | |
tree | 621f13e9dd1e3b4f3d2cdc8de4e438a71ee437db /.luacheckrc | |
parent | 3721a65c808b8873280fb6303924743b3e4d4c83 (diff) | |
download | prosody-afe8199ba90062bb215e3f154549e7e793db955a.tar.gz prosody-afe8199ba90062bb215e3f154549e7e793db955a.zip |
luacheck: Ignore new warning about uses of `not (x == y)` and similar
Added in luacheck 0.26.
Diffstat (limited to '.luacheckrc')
-rw-r--r-- | .luacheckrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.luacheckrc b/.luacheckrc index 3f8c6225..d08dfa70 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -1,6 +1,6 @@ cache = true codes = true -ignore = { "411/err", "421/err", "411/ok", "421/ok", "211/_ENV", "431/log", "214", } +ignore = { "411/err", "421/err", "411/ok", "421/ok", "211/_ENV", "431/log", "214", "581" } std = "lua53c" max_line_length = 150 |