From 112365a9e726634e1f1b98f312f8fa0589e94b65 Mon Sep 17 00:00:00 2001 From: Jacob Shufro Date: Wed, 17 Apr 2024 17:33:59 -0400 Subject: [PATCH] Flip all linters on except errcheck --- .github/workflows/lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a24cad5ce..45082bcb9 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -34,8 +34,8 @@ jobs: # Optional: golangci-lint command line arguments. # args: --issues-exit-code=0 - # For now, Smart Node will only enforce goimports linting - args: --disable-all --enable goimports --enable staticcheck --enable ineffassign --enable gosimple --enable unused + # For now, Smart Node will enforce everything except errcheck + args: --disable errcheck # Optional: show only new issues if it's a pull request. The default value is `false`. # only-new-issues: true