Skip to content

Commit 0d94b76

Browse files
committed
Adding .luachecrc with a minimum configuration
The linter "luacheck" need a special configuration file to make it stop complaining. In addition to the configuration file a few changes are made to remove specific lints, thus removing the the need for inline options and file-specific handling. This does not add the linter to the toolchain, it is only for in-editor use. Bug: T180925 Change-Id: I091b46fdf358c36f02b36a65223f643a2c9e41b2
1 parent cb7c32e commit 0d94b76

File tree

2 files changed

+16
-12
lines changed

2 files changed

+16
-12
lines changed

.luacheckrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
stds.scribunto = {
2+
globals = { "mw", "mw_interface" }
3+
}
4+
std = "min+scribunto"

client/includes/DataAccess/Scribunto/mw.wikibase.entity.lua

+12-12
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
]]
1010

1111
local php = mw_interface
12-
local entity = {}
12+
local Entity = {}
1313
local metatable = {}
1414
local methodtable = {}
1515
local util = require 'libraryUtil'
@@ -19,7 +19,7 @@ local checkTypeMulti = util.checkTypeMulti
1919
metatable.__index = methodtable
2020

2121
-- Claim ranks (Claim::RANK_* in PHP)
22-
entity.claimRanks = {
22+
Entity.claimRanks = {
2323
RANK_TRUTH = 3,
2424
RANK_PREFERRED = 2,
2525
RANK_NORMAL = 1,
@@ -46,7 +46,7 @@ local maskClaimsTable = function( entity )
4646
entity.claims = {}
4747

4848
local pseudoClaimsMetatable = {}
49-
pseudoClaimsMetatable.__index = function( emptyTable, propertyId )
49+
pseudoClaimsMetatable.__index = function( _, propertyId )
5050
if isValidPropertyId( propertyId ) then
5151
-- Only attempt to track the usage if we have a valid property id.
5252
php.addStatementUsage( entity.id, propertyId )
@@ -55,18 +55,18 @@ local maskClaimsTable = function( entity )
5555
return actualEntityClaims[propertyId]
5656
end
5757

58-
pseudoClaimsMetatable.__newindex = function( emptyTable, propertyId, data )
58+
pseudoClaimsMetatable.__newindex = function( _, _, _ )
5959
error( 'Entity cannot be modified' )
6060
end
6161

62-
local logNext = function( emptyTable, propertyId )
62+
local logNext = function( _, propertyId )
6363
if isValidPropertyId( propertyId ) then
6464
php.addStatementUsage( entity.id, propertyId )
6565
end
6666
return next( actualEntityClaims, propertyId )
6767
end
6868

69-
pseudoClaimsMetatable.__pairs = function( emptyTable )
69+
pseudoClaimsMetatable.__pairs = function( _ )
7070
return logNext, {}, nil
7171
end
7272

@@ -77,7 +77,7 @@ end
7777
-- Create new entity object from given data
7878
--
7979
-- @param {table} data
80-
entity.create = function( data )
80+
Entity.create = function( data )
8181
if type( data ) ~= 'table' then
8282
error( 'Expected a table obtained via mw.wikibase.getEntityObject, got ' .. type( data ) .. ' instead' )
8383
end
@@ -211,7 +211,7 @@ methodtable.getBestStatements = function( entity, propertyId )
211211
local statements = {}
212212
local bestRank = 'normal'
213213

214-
for k, statement in pairs( entity.claims[propertyId] ) do
214+
for _, statement in pairs( entity.claims[propertyId] ) do
215215
if statement.rank == bestRank then
216216
statements[#statements + 1] = statement
217217
elseif statement.rank == 'preferred' then
@@ -233,7 +233,7 @@ methodtable.getProperties = function( entity )
233233
local properties = {}
234234

235235
local n = 0
236-
for k, v in pairs( entity.claims ) do
236+
for k, _ in pairs( entity.claims ) do
237237
n = n + 1
238238
properties[n] = k
239239
end
@@ -306,8 +306,8 @@ methodtable.formatStatements = function( entity, propertyLabelOrId, acceptableRa
306306
);
307307
end
308308

309-
mw.wikibase.entity = entity
310-
package.loaded['mw.wikibase.entity'] = entity
309+
mw.wikibase.entity = Entity
310+
package.loaded['mw.wikibase.entity'] = Entity
311311
mw_interface = nil
312312

313-
return entity
313+
return Entity

0 commit comments

Comments
 (0)