chore(linter): add dummy linter entry for Rexx
All checks were successful
CI / Test (push) Successful in 26s
CI / Lint (push) Successful in 18s
CI / Build (push) Successful in 14s
Release / Create Release (push) Successful in 2m1s

Add a "none" linter configuration for the Rexx language to provide structure,
while noting that no traditional linter is used and it's primarily for grokkit analyze.
This commit is contained in:
Greg Gauthier 2026-03-28 17:43:18 +00:00
parent 269faa6546
commit e97457c00f

View File

@ -173,7 +173,14 @@ var languages = []Language{
{
Name: "Rexx",
Extensions: []string{".rx", ".rex", ".rexlib", ".rexx", ".cls"},
Linters: []Linter{}, // No traditional linter; used primarily by `grokkit analyze`
Linters: []Linter{
{
Name: "none",
Command: "none",
Args: []string{},
InstallInfo: "No traditional linter; used primarily by `grokkit analyze`",
},
},
},
}