From 5b470fa8aeae247da574ac0a9bc2137a01d49a0c Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:57:52 -0800 Subject: [PATCH] Update .codeclimate.yml --- .codeclimate.yml | 37 +++++++++++++++++-------------------- 1 file changed, 17 insertions(+), 20 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 1c3606dc846..bed9dd5c3d8 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -1,22 +1,19 @@ --- -engines: - # ... CONFIG CONTENT ... - pylint: - enabled: true - # ... CONFIG CONTENT ... - checks: - import-error: - enabled: false - syntax-error: - enabled: false - no-name-in-module: - enabled: false - # Per-Language Mass Threshold Defaults - # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine - similar-code: - config: - threshold: 50 #overriding will affect all languages - identical-code: - config: - threshold: 50 #overriding will affect all languages +version: "2" # required to adjust maintainability checks + +checks: + import-error: + enabled: false + syntax-error: + enabled: false + no-name-in-module: + enabled: false + # Per-Language Mass Threshold Defaults + # https://docs.codeclimate.com/docs/duplication#section-understand-the-engine + similar-code: + config: + threshold: 50 #overriding will affect all languages + identical-code: + config: + threshold: 50 #overriding will affect all languages # ... CONFIG CONTENT ...