From 78e30afa23d11cced9156c6c3b775231f287d9c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rich=CE=9Brd?= Date: Thu, 22 Jul 2021 13:53:43 -0400 Subject: [PATCH] fix: exclude bindata.go from codeclimate --- .codeclimate.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index d8239a866..ec4c979db 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -38,7 +38,8 @@ checks: config: threshold: # language-specific defaults. an override will affect all languages. exclude_patterns: - - vendor/ - - static/ - - t/ - - mailserver/migrations + - "vendor/" + - "static/" + - "t/" + - "mailserver/migrations" + - "**/*/bindata.go" \ No newline at end of file