From: Igor Munkin <imun@tarantool.org> To: sergeyb@tarantool.org Cc: o.piskunov@tarantool.org, tarantool-patches@dev.tarantool.org, Vladislav Shpilevoy <v.shpilevoy@tarantool.org> Subject: Re: [Tarantool-patches] [PATCH v5 06/10] Fix luacheck warnings in src/box/lua/ Date: Wed, 27 May 2020 19:54:02 +0300 [thread overview] Message-ID: <20200527165402.GA21558@tarantool.org> (raw) In-Reply-To: <bfd2eef07d9c52a860a649b420d0a29f72ce0090.1589275364.git.sergeyb@tarantool.org> Sergey, Thanks for the patch! There is a mess with suppressions (branch is OK), so I just left only relevant part. On 12.05.20, sergeyb@tarantool.org wrote: > From: Sergey Bronnikov <sergeyb@tarantool.org> > > Closes #4681 > > Reviewed-by: Vladislav Shpilevoy <v.shpilevoy@tarantool.org> > Co-authored-by: Vladislav Shpilevoy <v.shpilevoy@tarantool.org> > --- > .luacheckrc | 42 ++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 42 insertions(+) > > diff --git a/.luacheckrc b/.luacheckrc > index 3cd05a254..e5c4c4509 100644 > --- a/.luacheckrc > +++ b/.luacheckrc > @@ -29,6 +29,48 @@ files["extra/dist/tarantoolctl.in"] = { > globals = {"box", "_TARANTOOL"}, > ignore = {"212/self", "122", "431"} > } > +files["**/*.lua"] = { Again, spaces vs tabs. > + globals = {"box", "_TARANTOOL", "help", "tutorial"}, OK, box and _TARANTOOL globals are widely used but AFAICS help and tutorial occurs only in src/lua/help.lua and src/box/lua/console.lua, so there is no need to suppress it source-wide. > + ignore = {"212/self", "122", "143", "142"} I see no warning with [122] and [142] code, so they seem to be excess here. Furthermore why do we need to suppress [143] globally if we don't use vanilla luacheck? > +} > files["src/lua/*.lua"] = {ignore = {"212/self"}} If unused self argument is suppressed source-wide, the suppression above can be dropped. > files["src/lua/init.lua"] = {globals = {"dostring"}} > files["src/lua/swim.lua"] = {ignore = {"431"}} > +files["src/box/lua/console.lua"] = {ignore = {"212"}} Well, why do we have so much unused args here? Can we fix such warnings? Feel free to file a follow-up issue for this. > +files["src/box/lua/load_cfg.lua"] = {ignore = {"542"}} The suppression above is excess since the issue is fixed via inline one. > +files["src/box/lua/net_box.lua"] = {ignore = {"431", "432", "411"}} One general comment: please sort suppressed codes, it's just more convenient for further maintenance. [411] warning can be fixed in a very simple way: just remove local prior to create_transport on line 919 (consider the diff at the end). As a result [411] suppression can be removed. > +files["src/box/lua/schema.lua"] = {globals = {"tonumber64"}, ignore = {"431", "432"}} Why do we need to explicitly set tonumber64 as global and does not set bit? Please choose one: either mention all globals used in sources to prepare the sources to be checked against vanilla luacheck or just omit such occurences if we're going to use our fork in CI. As a result, after applying the following diff everything is OK: ================================================================================ diff --git a/.luacheckrc b/.luacheckrc index a141e76ef..716f376b8 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -30,13 +30,11 @@ files["extra/dist/tarantoolctl.in"] = { ignore = {"212/self", "122", "431"} } files["**/*.lua"] = { - globals = {"box", "_TARANTOOL", "help", "tutorial"}, - ignore = {"212/self", "122", "143", "142"} + globals = {"box", "_TARANTOOL"}, + ignore = {"212/self"}, } -files["src/lua/*.lua"] = {ignore = {"212/self"}} files["src/lua/init.lua"] = {globals = {"dostring"}} files["src/lua/swim.lua"] = {ignore = {"431"}} -files["src/box/lua/console.lua"] = {ignore = {"212"}} -files["src/box/lua/load_cfg.lua"] = {ignore = {"542"}} -files["src/box/lua/net_box.lua"] = {ignore = {"431", "432", "411"}} -files["src/box/lua/schema.lua"] = {globals = {"tonumber64"}, ignore = {"431", "432"}} +files["src/box/lua/console.lua"] = {globals = {"help"}, ignore = {"212"}} +files["src/box/lua/net_box.lua"] = {ignore = {"431", "432"}} +files["src/box/lua/schema.lua"] = {ignore = {"431", "432"}} diff --git a/src/box/lua/net_box.lua b/src/box/lua/net_box.lua index 3f2a9df81..646529173 100644 --- a/src/box/lua/net_box.lua +++ b/src/box/lua/net_box.lua @@ -916,7 +916,7 @@ end -- Now it is necessary to have a strong ref to callback somewhere or -- it is GC-ed prematurely. We wrap stop() method, stashing the -- ref in an upvalue (stop() performance doesn't matter much.) -local create_transport = function(host, port, user, password, callback, +create_transport = function(host, port, user, password, callback, connection, greeting) local weak_refs = setmetatable({callback = callback}, {__mode = 'v'}) local function weak_callback(...) ================================================================================ I checked the src/box/lua/*.lua sources with our luacheck fork: | $ tarantoolctl rocks install luacheck | $ $ .rocks/bin/luacheck --codes --config .luacheckrc src/box/lua/*.lua | Checking src/box/lua/console.lua OK | Checking src/box/lua/feedback_daemon.lua OK | Checking src/box/lua/key_def.lua OK | Checking src/box/lua/load_cfg.lua OK | Checking src/box/lua/merger.lua OK | Checking src/box/lua/net_box.lua OK | Checking src/box/lua/schema.lua OK | Checking src/box/lua/session.lua OK | Checking src/box/lua/tuple.lua OK | Checking src/box/lua/upgrade.lua OK | Checking src/box/lua/xlog.lua OK | | Total: 0 warnings / 0 errors in 11 files <snipped> > -- > 2.23.0 > -- Best regards, IM
next prev parent reply other threads:[~2020-05-27 17:02 UTC|newest] Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-05-12 9:49 [Tarantool-patches] [PATCH v5 00/10] Add static analysis with luacheck sergeyb 2020-05-12 9:49 ` [Tarantool-patches] [PATCH v5 01/10] Add initial luacheck config sergeyb 2020-05-26 22:15 ` Igor Munkin 2020-05-28 15:31 ` Sergey Bronnikov 2020-05-28 16:07 ` Sergey Bronnikov 2020-05-29 11:20 ` Igor Munkin 2020-11-10 14:30 ` Sergey Bronnikov 2020-11-10 14:49 ` Igor Munkin 2020-05-12 9:49 ` [Tarantool-patches] [PATCH v5 02/10] gitlab-ci: enable static analysis with luacheck sergeyb 2020-05-13 14:15 ` Alexander V. Tikhonov 2020-05-13 14:40 ` Sergey Bronnikov 2020-05-26 22:39 ` Igor Munkin 2020-05-28 10:03 ` Sergey Bronnikov 2020-05-12 9:49 ` [Tarantool-patches] [PATCH v5 03/10] Fix luacheck warnings in extra/dist/tarantoolctl.in sergeyb 2020-05-26 23:11 ` Igor Munkin 2020-05-28 10:13 ` Sergey Bronnikov 2020-05-12 9:49 ` [Tarantool-patches] [PATCH v5 04/10] Fix luacheck warnings in src/lua/ sergeyb 2020-05-27 11:22 ` Igor Munkin 2020-05-28 12:22 ` Sergey Bronnikov 2020-05-12 9:50 ` [Tarantool-patches] [PATCH v5 05/10] " sergeyb 2020-05-13 11:13 ` Sergey Bronnikov 2020-05-27 11:22 ` Igor Munkin 2020-05-12 9:50 ` [Tarantool-patches] [PATCH v5 06/10] Fix luacheck warnings in src/box/lua/ sergeyb 2020-05-27 16:54 ` Igor Munkin [this message] 2020-05-28 15:16 ` Sergey Bronnikov 2020-05-12 9:50 ` [Tarantool-patches] [PATCH v5 07/10] " sergeyb 2020-05-13 11:14 ` Sergey Bronnikov 2020-05-27 16:54 ` Igor Munkin 2020-05-28 11:19 ` Sergey Bronnikov 2020-05-12 9:50 ` [Tarantool-patches] [PATCH v5 08/10] Fix luacheck warnings in test/ sergeyb 2020-05-29 11:08 ` Igor Munkin 2020-05-29 14:08 ` Sergey Bronnikov 2020-05-12 9:50 ` [Tarantool-patches] [PATCH v5 09/10] Add luacheck supressions for luajit tests sergeyb 2020-05-26 20:45 ` Igor Munkin 2020-05-28 19:25 ` Sergey Bronnikov 2020-05-12 12:28 ` [Tarantool-patches] [PATCH 10/10] build: Enable 'make luacheck' target Sergey Bronnikov 2020-05-26 20:45 ` Igor Munkin 2020-05-28 9:59 ` Sergey Bronnikov 2020-05-26 20:38 ` [Tarantool-patches] [PATCH v5 11/10] test: fix warnings spotted by luacheck sergeyb
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20200527165402.GA21558@tarantool.org \ --to=imun@tarantool.org \ --cc=o.piskunov@tarantool.org \ --cc=sergeyb@tarantool.org \ --cc=tarantool-patches@dev.tarantool.org \ --cc=v.shpilevoy@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH v5 06/10] Fix luacheck warnings in src/box/lua/' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox