From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng3.m.smailru.net (smtpng3.m.smailru.net [94.100.177.149]) (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 3825E469710 for ; Wed, 27 May 2020 02:20:12 +0300 (MSK) Date: Wed, 27 May 2020 02:11:46 +0300 From: Igor Munkin Message-ID: <20200526231146.GT5455@tarantool.org> References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Subject: Re: [Tarantool-patches] [PATCH v5 03/10] Fix luacheck warnings in extra/dist/tarantoolctl.in List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: sergeyb@tarantool.org Cc: o.piskunov@tarantool.org, tarantool-patches@dev.tarantool.org, Vladislav Shpilevoy , alexander.turenko@tarantool.org Sergey, Thanks for the patch! I see there are several changes since v4, so I re-checked these changeset one more time. Please consider a single nit below. Otherwise, LGTM. 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 | 5 +++++ > extra/dist/tarantoolctl.in | 33 +++++++++++---------------------- > 2 files changed, 16 insertions(+), 22 deletions(-) > > diff --git a/.luacheckrc b/.luacheckrc > index 2683c8c26..f39502063 100644 > --- a/.luacheckrc > +++ b/.luacheckrc > @@ -24,3 +24,8 @@ exclude_files = { > ".rocks/**/*.lua", > ".git/**/*.lua", > } > + > +files["extra/dist/tarantoolctl.in"] = { > + globals = {"box", "_TARANTOOL"}, > + ignore = {"212/self", "122", "431"} > +} Typo: there is a little mess with whitespace above: * tabs are used instead of spaces for indentation * trailing whitespace (but I don't see it on branch) > -- > 2.23.0 > -- Best regards, IM