Kim Alvefur
44ed7a0e21
util.sasl.digest-md5: Remove, obsolete since 2011
...
RFC 6331 lists several problems with this outdated authentication
mechanism. The code here was also completely ignored by lint checks and
has probably not been used for a long time, as it is incompatible with
SCRAM-hashed password storage.
2020-04-14 16:51:24 +02:00
Kim Alvefur
b3259cf52e
luacheck: Don't not warn about not using secondary return values
...
Brace for ONE BILLION WARNINGS!!!
2019-12-20 22:23:22 +01:00
Matthew Wild
fbb0bbe1b4
.luacheckrc: Remove passing spec/ files from ignore list
2019-12-09 12:44:43 +00:00
Matthew Wild
6866201d71
.luacheckrc: Remove passing file from ignore list
2019-12-09 12:42:22 +00:00
Kim Alvefur
ce1056dc43
.luacheckrc: Correct indentation of 'exclude_files' list
2019-04-01 21:15:47 +02:00
Matthew Wild
d89b760be1
.luacheckrc: Update to reflect new module API methods
2019-03-19 09:07:36 +00:00
Kim Alvefur
92445d93df
luacheckrc: Teach luacheck about the new module:send_iq() API
2018-12-30 03:20:37 +01:00
Kim Alvefur
4da406588e
net.adns: Silence individual luacheck warnings instead of ignoring entire file
2018-12-24 03:00:27 +01:00
Kim Alvefur
5e2c950296
luacheckrc: No longer ignore access to undefined fields on table lib
2018-12-08 17:13:39 +01:00
Kim Alvefur
2d56ac0394
lint: No longer ignore access to the deprecated global 'unpack'
...
_G.unpack is deprecated in Lua 5.2
2018-12-08 17:07:28 +01:00
Kim Alvefur
fa9d2ec963
luacheckrc: Set Lua standard to 5.3 with 5.2 compat enabled
2018-12-08 17:00:30 +01:00
Kim Alvefur
9c1bbd8313
mod_net_multiplex: Remove exception from luacheck
2018-10-10 21:55:58 +02:00
Kim Alvefur
681bf74342
mod_http_files: Remove exception from luacheck
2018-10-10 21:53:15 +02:00
Kim Alvefur
19f86b5428
mod_privacy: Remove exception from luacheck
...
Plugin has been removed and replaced by a tombstone, no point in
excluding it from linting
2018-10-10 21:48:38 +02:00
Kim Alvefur
a19ac39844
mod_storage_sql: Remove exception from luacheck
2018-10-10 21:22:43 +02:00
Kim Alvefur
18f98f7017
.luacheckrc: Ignore unused secondaries in non-strict mode
...
Previous commit was backwards
2018-10-06 18:56:22 +02:00
Kim Alvefur
e33c9e7a43
.luacheckrc: Do not ignore unused secondaries in strict mode
2018-10-06 18:52:52 +02:00
Kim Alvefur
0ddec30924
mod_websocket: Silence the one warning instead of ignoring the entire file
2018-09-30 17:55:13 +02:00
Kim Alvefur
4f7af62406
mod_s2s: Silence all warnings instead of ignoring the entire module
2018-09-30 17:49:56 +02:00
Kim Alvefur
ca83f517b7
mod_admin_telnet: Remove from luacheck ignore list
2018-09-30 14:38:32 +02:00
Kim Alvefur
a5765839cd
mod_admin_adhoc: Remove from global luacheck ignore list
2018-09-30 13:37:13 +02:00
Matthew Wild
db08521d47
.luacheckrc: Allow randomize() global in spec/
...
This is a busted function that is not currently recognized by luacheck.
See https://github.com/mpeterv/luacheck/pull/183
2018-09-29 12:20:51 +01:00
Matthew Wild
0207b2d785
util.json tests: Add [luacheck] annotation to mark intentionally-empty if branch
2018-09-17 15:28:53 +01:00
Matthew Wild
5c12f56a9e
.luacheckrc: Remove util_cache_spec.lua from the ignore list
2018-09-17 15:27:01 +01:00
Matthew Wild
5bf9e2cd57
.luacheckrc: Remove aspirational goals from strict check, keep it simple for now
2018-09-13 16:17:46 +01:00
Kim Alvefur
02b86f45f9
luacheckrc: Remove mod_groups from ignored files
2018-07-07 21:00:14 +02:00
Kim Alvefur
4e35f8575f
luacheckrc: Remove exception for modules that produce no warnings
2018-07-06 00:19:22 +02:00
Kim Alvefur
60f44b1556
mod_announce: Fix luacheck warnings
2018-07-06 00:16:48 +02:00
Kim Alvefur
f03ef26e4b
luacheckrc: Consider mod_http clean
2018-07-06 00:16:17 +02:00
Kim Alvefur
135f900336
luacheckrc: Remove exception for mod_pep, it's clean
2018-07-06 00:06:36 +02:00
Kim Alvefur
675cbc84d9
.luacheckrc: Remove mod_pubsub/pubsub.lib.lua from files excluded from checks
2018-05-23 15:02:55 +02:00
Kim Alvefur
66f9cbcac7
.luacheckrc: Only ignore warnings for excluded files, not syntax errors
2018-05-23 00:55:33 +02:00
Kim Alvefur
3120037b03
.luacheckrc: Ignore attempts to get table.unpack
...
This is to allow this common pattern:
local unpack = table.unpack or unpack;
2018-05-19 00:30:34 +02:00
Kim Alvefur
246c6f8320
.luacheckrc: Remove mod_limits from excluded files as it should now be clean
2018-05-18 21:10:51 +02:00
Matthew Wild
c9034dfead
.luacheckrc: Add some additional stricter requirements when PROSODY_STRICT_LINT=1
2018-05-18 15:02:00 +01:00
Matthew Wild
b2ebed8b06
.luacheckrc: Ignore currently-unclean files unless env var PROSODY_STRICT_LINT=1
2018-05-18 15:01:38 +01:00
Matthew Wild
0d09586960
.luacheckrc: Fix whitespace
2018-05-18 15:00:14 +01:00
Kim Alvefur
6f6e04b6c6
luacheckrc: No longer ignore use of the global 'server' (net.server)
2018-04-05 19:37:32 +02:00
Kim Alvefur
9ce110e603
luacheckrc: Forget about _G.hosts, things should use _G.prosody.hosts
2018-03-29 16:42:24 +02:00
Kim Alvefur
268c164b86
luacheckrc: Remove allowance for the global log() since it may not exist as early as before
2018-04-05 15:56:47 +02:00
Kim Alvefur
51b193594f
luacheckrc: Allow top level variables in prosodyctl (eg CFG_*) [luacheck]
2018-03-23 13:18:28 +01:00
Kim Alvefur
f0533e4d52
luacheckrc: Let luacheck know about the log and server globals
2018-03-23 13:16:14 +01:00
Kim Alvefur
ce0661a23b
luacheckrc: Only allow top level declarations in the main prosody executable
2018-03-23 13:13:07 +01:00
Kim Alvefur
0417cdaae2
luacheckrc: Ignore all unknown globals in config file (ie all settings)
2018-03-10 00:08:21 +01:00
Kim Alvefur
58ed4559d3
luacheckrc: Restore module semantics, but only for plugins (ignores some globals)
2018-03-09 19:23:19 +01:00
Kim Alvefur
13a78a9463
.luacheckrc: Add awareness of the module:http_url API added by mod_http
2018-03-07 19:21:24 +01:00
Kim Alvefur
1dd3dc731f
luacheckrc: Remove allowance legacy module() related globals
2018-03-07 19:20:31 +01:00
Kim Alvefur
f3d5f41d6a
luacheckrc: Reflow globals settings
2018-03-07 19:19:56 +01:00
Kim Alvefur
fe112c8cd9
luacheckrc: Declare known global functions in config file
2018-03-01 21:58:50 +01:00
Kim Alvefur
61c6bb76de
moduleapi: Remove unused and undocumented :has_feature and :has_identity
2018-02-23 17:11:59 +01:00