From f94b25933a2fabcd71bf345dd59e6a2642cc64fe Mon Sep 17 00:00:00 2001 From: Justin Chu Date: Thu, 12 May 2022 07:51:45 -0700 Subject: [PATCH] ci(cpplint): Ignore runtime/references warnings (#11499) Allow non-const references https://github.com/microsoft/onnxruntime/blob/6f85d3e5c81c919022ac4a77e5a051da8518b15d/docs/Coding_Conventions_and_Standards.md?plain=1#L11-L12 --- .github/workflows/lint.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 59036bbb91..0f214e44cb 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -85,6 +85,7 @@ jobs: reporter: github-pr-check level: warning flags: --linelength=120 + filter: "-runtime/references" lint-js: name: Lint JavaScript