Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cmd/sym/bootstrap.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
// that registers the linter with the global registry.
_ "github.com/DevSymphony/sym-cli/internal/linter/checkstyle"
_ "github.com/DevSymphony/sym-cli/internal/linter/eslint"
_ "github.com/DevSymphony/sym-cli/internal/linter/golangcilint"
_ "github.com/DevSymphony/sym-cli/internal/linter/pmd"
_ "github.com/DevSymphony/sym-cli/internal/linter/prettier"
_ "github.com/DevSymphony/sym-cli/internal/linter/pylint"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ require (
github.com/modelcontextprotocol/go-sdk v1.1.0
github.com/stretchr/testify v1.11.1
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
gopkg.in/yaml.v3 v3.0.1
)

require (
Expand All @@ -28,5 +29,4 @@ require (
golang.org/x/oauth2 v0.30.0 // indirect
golang.org/x/sys v0.38.0 // indirect
golang.org/x/text v0.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading