From 66c2af62fe70f93dbd9f6873f16ae6db6c607ab0 Mon Sep 17 00:00:00 2001 From: Glyn Normington Date: Fri, 26 Mar 2021 14:51:16 +0000 Subject: [PATCH] Allow lints of pest grammar terminals Terminals such as EOI and WHITESPACE are objected to by clippy. --- .github/workflows/quickstart.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/quickstart.yml b/.github/workflows/quickstart.yml index 4122c19..450b025 100644 --- a/.github/workflows/quickstart.yml +++ b/.github/workflows/quickstart.yml @@ -85,4 +85,4 @@ jobs: uses: actions-rs/cargo@v1 with: command: clippy - args: -- -D warnings \ No newline at end of file + args: -- -D warnings -A clippy::upper-case-acronyms