fix: Resolve build errors and warnings, and update grammar

Co-authored-by: aider (openai/andrew/openrouter/sonoma-sky-alpha) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-09-10 16:20:08 -03:00
parent 71fa20ebb3
commit b0e359989a
4 changed files with 5 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
WHITESPACE = _{ " " | "\t" | "\n" | "\r" }
#! This Pest grammar defines the syntax for filter chains used in the Keep application.
//! This Pest grammar defines the syntax for filter chains used in the Keep application.
// Main entry point for parsing multiple filters separated by pipes
filters = { SOI ~ filter ~ (pipe ~ filter)* ~ EOI }