Fix linting
Use .styluaignore instead of Makefile hacks to ignore generated files.
This commit is contained in:
parent
4d69e77d9f
commit
90fa692303
|
@ -0,0 +1 @@
|
|||
src/assets.lua
|
5
Makefile
5
Makefile
|
@ -1,5 +1,4 @@
|
|||
SOURCE_FILES := $(shell grep "import '" src/main.lua | grep -v CoreLibs | sed "s/.*'\(.*\)'.*/src\/\1/") src/main.lua
|
||||
GENERATED_FILES := src/assets.lua
|
||||
|
||||
all:
|
||||
pdc --skip-unknown src BatterUp.pdx
|
||||
|
@ -8,11 +7,11 @@ assets:
|
|||
lua lib/preprocess-cl.lua src/assets.lua2p
|
||||
|
||||
check: assets
|
||||
stylua -c --indent-type Spaces -g "*.lua" -g "!${GENERATEED_FILES}" src/
|
||||
stylua -c --indent-type Spaces src/
|
||||
cat __stub.ext.lua <(sed 's/^function/-- selene: allow(unused_variable)\nfunction/' ${PLAYDATE_SDK_PATH}/CoreLibs/__types.lua) ${SOURCE_FILES} | grep -v '^import' | sed 's/<const>//g' | selene -
|
||||
|
||||
test: check
|
||||
(cd src; find ./test -name '*lua' | xargs -L1 lua)
|
||||
|
||||
lint:
|
||||
stylua --indent-type Spaces -g "*.lua" -g "!${GENERATEED_FILES}" src/
|
||||
stylua --indent-type Spaces src/
|
||||
|
|
|
@ -41,11 +41,8 @@ function actionQueue:runWaiting(deltaSeconds)
|
|||
local currentTimeMs = playdate.getCurrentTimeMilliseconds()
|
||||
for name, actionObject in pairs(self.queue) do
|
||||
local result = actionObject.action(deltaSeconds)
|
||||
if
|
||||
result ~= ActionResult.NeedsMoreTime
|
||||
or currentTimeMs > actionObject.expireTimeMs
|
||||
then
|
||||
if result ~= ActionResult.NeedsMoreTime or currentTimeMs > actionObject.expireTimeMs then
|
||||
self.queue[name] = nil
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -59,4 +59,3 @@ function Ball:launch(destX, destY, easingFunc, flyTimeMs, floaty, customBallScal
|
|||
self.floatAnimator:reset(flyTimeMs)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ function Baserunning.new(announcer)
|
|||
--- Since this object is what ultimately *mutates* the out count,
|
||||
--- it seems sensible to store the value here.
|
||||
outs = 0,
|
||||
announcer = announcer
|
||||
announcer = announcer,
|
||||
}, { __index = Baserunning })
|
||||
|
||||
o.batter = o:newRunner()
|
||||
|
|
|
@ -28,12 +28,7 @@ function drawMinimap(runners, fielders)
|
|||
for _, fielder in pairs(fielders) do
|
||||
local x = (MinimapMultX * fielder.x) + MinimapOffsetX
|
||||
local y = (MinimapMultY * fielder.y) + MinimapOffsetY
|
||||
if
|
||||
x > MinimapPosX
|
||||
and x < MinimapBoundX
|
||||
and y > MinimapPosY
|
||||
and y < MinimapBoundY
|
||||
then
|
||||
if x > MinimapPosX and x < MinimapBoundX and y > MinimapPosY and y < MinimapBoundY then
|
||||
gfx.drawCircleAtPoint(x, y, FielderCircleRadius)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -144,7 +144,7 @@ end
|
|||
---@param throwFlyMs number
|
||||
function Fielding:playerThrowTo(targetBase, launchBall, throwFlyMs)
|
||||
local maxTryTimeMs = 5000
|
||||
actionQueue:upsert('playerThrowTo', maxTryTimeMs, function()
|
||||
actionQueue:upsert("playerThrowTo", maxTryTimeMs, function()
|
||||
return playerThrowToImpl(self, targetBase, launchBall, throwFlyMs)
|
||||
end)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -200,7 +200,6 @@ local function outRunner(runner, message)
|
|||
end
|
||||
end
|
||||
end)
|
||||
|
||||
end
|
||||
|
||||
---@param scoredRunCount number
|
||||
|
|
|
@ -31,7 +31,7 @@ function utils.staticAnimator(value)
|
|||
currentValue = function(_)
|
||||
return value
|
||||
end,
|
||||
reset = function(_) end
|
||||
reset = function(_) end,
|
||||
}
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue