From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp59.i.mail.ru (smtp59.i.mail.ru [217.69.128.39]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id E0185469710 for ; Thu, 28 May 2020 15:23:19 +0300 (MSK) Date: Thu, 28 May 2020 15:22:21 +0300 From: Sergey Bronnikov Message-ID: <20200528122221.GA86218@pony.bronevichok.ru> References: <1a49a09206b23b0fa9367381e1ae7d08d6bf11b3.1589275364.git.sergeyb@tarantool.org> <20200527112204.GU5455@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20200527112204.GU5455@tarantool.org> Subject: Re: [Tarantool-patches] [PATCH v5 04/10] Fix luacheck warnings in src/lua/ List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Igor Munkin Cc: o.piskunov@tarantool.org, tarantool-patches@dev.tarantool.org, Vladislav Shpilevoy , alexander.turenko@tarantool.org Igor, I have added globals and committed to branch. On 14:22 Wed 27 May , Igor Munkin wrote: > Sergey, > > Thanks for the patch! I propose to add suppressions also for the > remaining globals such as os, package in init.lua and help, tutorial in > help.lua to fix all warnings reported for src/lua directory in scope of > this patch. > > Otherwise LGTM, as for the major patch. > > On 12.05.20, sergeyb@tarantool.org wrote: > > From: Sergey Bronnikov > > > > Closes #4681 > > > > Reviewed-by: Vladislav Shpilevoy > > Reviewed-by: Igor Munkin > > > > Co-authored-by: Vladislav Shpilevoy > > Co-authored-by: Igor Munkin > > --- > > .luacheckrc | 3 +++ > > 1 file changed, 3 insertions(+) > > > > diff --git a/.luacheckrc b/.luacheckrc > > index f39502063..3cd05a254 100644 > > --- a/.luacheckrc > > +++ b/.luacheckrc > > @@ -29,3 +29,6 @@ files["extra/dist/tarantoolctl.in"] = { > > globals = {"box", "_TARANTOOL"}, > > ignore = {"212/self", "122", "431"} > > } > > +files["src/lua/*.lua"] = {ignore = {"212/self"}} > > +files["src/lua/init.lua"] = {globals = {"dostring"}} > > +files["src/lua/swim.lua"] = {ignore = {"431"}} > > -- > > 2.23.0 > > > > -- > Best regards, > IM