From e7f679544d5aacf30d5f96c16a992731d46ea294 Mon Sep 17 00:00:00 2001 From: tiulpin Date: Mon, 9 Dec 2024 13:52:44 +0100 Subject: [PATCH] :zap: Bump linters versions --- core/installers.go | 2 +- platform/configurator.go | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/installers.go b/core/installers.go index 61acdcb4..c5962c77 100644 --- a/core/installers.go +++ b/core/installers.go @@ -39,7 +39,7 @@ var ( eapVer = "eap" versionsMap = map[string]string{ releaseVer: "2024.2", - eapVer: "2024.2", + eapVer: "2024.3", } Products = map[string]string{ platform.QDJVM: "IIU", diff --git a/platform/configurator.go b/platform/configurator.go index 468f8964..abf39d5f 100644 --- a/platform/configurator.go +++ b/platform/configurator.go @@ -32,9 +32,9 @@ import ( const ( QodanaSarifName = "qodana.sarif.json" configName = "qodana" - ReleaseVersion = "2024.2" - shortVersion = "242" - isReleased = true // set to true after the 2024.2 release is published + ReleaseVersion = "2024.3" + shortVersion = "243" + isReleased = false // set to true after the 2024.2 release is published ) // langsProductCodes is a map of languages to linters. @@ -118,8 +118,8 @@ func recognizeDirLanguages(projectPath string) ([]string, error) { relpath = relpath + string(os.PathSeparator) } if isInIgnoredDirectory(path) || enry.IsVendor(relpath) || enry.IsDotFile(relpath) || - enry.IsDocumentation(relpath) || enry.IsConfiguration(relpath) || - enry.IsGenerated(relpath, nil) { + enry.IsDocumentation(relpath) || enry.IsConfiguration(relpath) || + enry.IsGenerated(relpath, nil) { if f.IsDir() { return filepath.SkipDir }