Skip to content

Commit

Permalink
Adds Testing linter to mllint's analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
bvobart committed Jun 23, 2021
1 parent 88ec080 commit 301b892
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions linters/linters.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
"github.com/bvobart/mllint/linters/ci"
"github.com/bvobart/mllint/linters/codequality"
"github.com/bvobart/mllint/linters/dependencymgmt"
"github.com/bvobart/mllint/linters/testing"
"github.com/bvobart/mllint/linters/versioncontrol"
)

Expand All @@ -22,6 +23,7 @@ var ByCategory = map[api.Category]api.Linter{
categories.DependencyMgmt: dependencymgmt.NewLinter(),
categories.ContinuousIntegration: ci.NewLinter(),
categories.CodeQuality: codequality.NewLinter(),
categories.Testing: testing.NewLinter(),
}

// Disabled contains all the linters for categories that have been disabled using Disable or DisableAll.
Expand Down

0 comments on commit 301b892

Please sign in to comment.