From e97457c00fe2697310679f2f57d6a11cce8cd42e Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Sat, 28 Mar 2026 17:43:18 +0000 Subject: [PATCH] chore(linter): add dummy linter entry for Rexx 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. --- internal/linter/linter.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/internal/linter/linter.go b/internal/linter/linter.go index 876e38f..e6d1e35 100644 --- a/internal/linter/linter.go +++ b/internal/linter/linter.go @@ -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`", + }, + }, }, }