Fix linting

Use .styluaignore instead of Makefile hacks to ignore generated files.
This commit is contained in:
Sage Vaillancourt 2025-02-09 14:47:37 -05:00
parent 4d69e77d9f
commit 90fa692303
9 changed files with 10 additions and 20 deletions

1
.styluaignore Normal file
View File

@ -0,0 +1 @@
src/assets.lua

View File

@ -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/

View File

@ -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

View File

@ -59,4 +59,3 @@ function Ball:launch(destX, destY, easingFunc, flyTimeMs, floaty, customBallScal
self.floatAnimator:reset(flyTimeMs)
end
end

View File

@ -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()

View File

@ -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

View File

@ -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

View File

@ -200,7 +200,6 @@ local function outRunner(runner, message)
end
end
end)
end
---@param scoredRunCount number

View File

@ -31,7 +31,7 @@ function utils.staticAnimator(value)
currentValue = function(_)
return value
end,
reset = function(_) end
reset = function(_) end,
}
end