Skip to content

Commit e7f6795

Browse files
committed
⚡ Bump linters versions
1 parent 28c3cb2 commit e7f6795

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

core/installers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var (
3939
eapVer = "eap"
4040
versionsMap = map[string]string{
4141
releaseVer: "2024.2",
42-
eapVer: "2024.2",
42+
eapVer: "2024.3",
4343
}
4444
Products = map[string]string{
4545
platform.QDJVM: "IIU",

platform/configurator.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ import (
3232
const (
3333
QodanaSarifName = "qodana.sarif.json"
3434
configName = "qodana"
35-
ReleaseVersion = "2024.2"
36-
shortVersion = "242"
37-
isReleased = true // set to true after the 2024.2 release is published
35+
ReleaseVersion = "2024.3"
36+
shortVersion = "243"
37+
isReleased = false // set to true after the 2024.2 release is published
3838
)
3939

4040
// langsProductCodes is a map of languages to linters.
@@ -118,8 +118,8 @@ func recognizeDirLanguages(projectPath string) ([]string, error) {
118118
relpath = relpath + string(os.PathSeparator)
119119
}
120120
if isInIgnoredDirectory(path) || enry.IsVendor(relpath) || enry.IsDotFile(relpath) ||
121-
enry.IsDocumentation(relpath) || enry.IsConfiguration(relpath) ||
122-
enry.IsGenerated(relpath, nil) {
121+
enry.IsDocumentation(relpath) || enry.IsConfiguration(relpath) ||
122+
enry.IsGenerated(relpath, nil) {
123123
if f.IsDir() {
124124
return filepath.SkipDir
125125
}

0 commit comments

Comments
 (0)