We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bae5bd3 commit 6b6bb3dCopy full SHA for 6b6bb3d
config/config.go
@@ -11,6 +11,7 @@ import (
11
"golang.org/x/mod/semver"
12
yaml "gopkg.in/yaml.v2"
13
14
+ "github.com/conventionalcommit/commitlint/formatter"
15
"github.com/conventionalcommit/commitlint/internal"
16
"github.com/conventionalcommit/commitlint/internal/registry"
17
"github.com/conventionalcommit/commitlint/lint"
@@ -26,6 +27,7 @@ func Parse(confPath string) (*lint.Config, error) {
26
27
28
conf := &lint.Config{
29
MinVersion: internal.Version(),
30
+ Formatter: (&formatter.DefaultFormatter{}).Name(),
31
Severity: lint.SeverityConfig{
32
Default: lint.SeverityError,
33
},
0 commit comments