fix: resolve selene lint warnings and errors

Problem: unused variables (undo_state, sha_result, date match
captures) and duplicate if/else branches in gcal sync triggered
selene warnings and errors.

Solution: prefix unused state with underscore, simplify date
validation to a single pattern match, remove dead sha_result
call, and merge duplicate event deletion branches into a single
condition.
This commit is contained in:
Barrett Ruth 2026-02-24 15:20:06 -05:00
parent edd16f6ecf
commit b00a4f01d4
3 changed files with 12 additions and 19 deletions

View file

@ -103,7 +103,7 @@ describe('parse', function()
end)
it('ignores lowercase prefix', function()
local desc, meta = parse.command_add('hello: world')
local desc, _ = parse.command_add('hello: world')
assert.are.equal('hello: world', desc)
end)