Skip to content

Commit

Permalink
⚡ Bump linters versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tiulpin committed Dec 9, 2024
1 parent 28c3cb2 commit e7f6795
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion core/installers.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
10 changes: 5 additions & 5 deletions platform/configurator.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
}
Expand Down

0 comments on commit e7f6795

Please sign in to comment.