Documentation ¶
Index ¶
- type AutogeneratedExclude
- type Cgo
- type Diff
- type Exclude
- type ExcludeRule
- type ExcludeRules
- type FilenameUnadjuster
- type Fixer
- type IdentifierMarker
- type MaxFromLinter
- type MaxPerFileFromLinter
- type MaxSameIssues
- type Nolint
- type PathPrettifier
- type PathShortener
- type Processor
- type SkipDirs
- type SkipFiles
- type SourceCode
- type UniqByLine
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AutogeneratedExclude ¶ added in v1.6.1
type AutogeneratedExclude struct {
// contains filtered or unexported fields
}
func NewAutogeneratedExclude ¶ added in v1.6.1
func NewAutogeneratedExclude(astCache *astcache.Cache) *AutogeneratedExclude
func (AutogeneratedExclude) Finish ¶ added in v1.6.1
func (p AutogeneratedExclude) Finish()
func (AutogeneratedExclude) Name ¶ added in v1.6.1
func (p AutogeneratedExclude) Name() string
type ExcludeRule ¶ added in v1.17.2
type ExcludeRules ¶ added in v1.17.2
type ExcludeRules struct {
// contains filtered or unexported fields
}
func NewExcludeRules ¶ added in v1.17.2
func NewExcludeRules(rules []ExcludeRule, lineCache *fsutils.LineCache, log logutils.Log) *ExcludeRules
func (ExcludeRules) Finish ¶ added in v1.17.2
func (ExcludeRules) Finish()
func (ExcludeRules) Name ¶ added in v1.17.2
func (ExcludeRules) Name() string
type FilenameUnadjuster ¶ added in v1.17.2
type FilenameUnadjuster struct {
// contains filtered or unexported fields
}
FilenameUnadjuster is needed because a lot of linters use fset.Position(f.Pos()) to get filename. And they return adjusted filename (e.g. *.qtpl) for an issue. We need restore real .go filename to properly output it, parse it, etc.
func NewFilenameUnadjuster ¶ added in v1.17.2
func NewFilenameUnadjuster(cache *astcache.Cache, log logutils.Log) *FilenameUnadjuster
func (FilenameUnadjuster) Finish ¶ added in v1.17.2
func (FilenameUnadjuster) Finish()
func (FilenameUnadjuster) Name ¶ added in v1.17.2
func (p FilenameUnadjuster) Name() string
type Fixer ¶ added in v1.17.2
type Fixer struct {
// contains filtered or unexported fields
}
type IdentifierMarker ¶ added in v1.17.2
type IdentifierMarker struct {
// contains filtered or unexported fields
}
func NewIdentifierMarker ¶ added in v1.17.2
func NewIdentifierMarker() *IdentifierMarker
func (IdentifierMarker) Finish ¶ added in v1.17.2
func (im IdentifierMarker) Finish()
func (IdentifierMarker) Name ¶ added in v1.17.2
func (im IdentifierMarker) Name() string
type MaxFromLinter ¶
type MaxFromLinter struct {
// contains filtered or unexported fields
}
func NewMaxFromLinter ¶
func (MaxFromLinter) Finish ¶
func (p MaxFromLinter) Finish()
func (MaxFromLinter) Name ¶
func (p MaxFromLinter) Name() string
type MaxPerFileFromLinter ¶
type MaxPerFileFromLinter struct {
// contains filtered or unexported fields
}
func NewMaxPerFileFromLinter ¶
func NewMaxPerFileFromLinter(cfg *config.Config) *MaxPerFileFromLinter
func (MaxPerFileFromLinter) Finish ¶
func (p MaxPerFileFromLinter) Finish()
func (MaxPerFileFromLinter) Name ¶
func (p MaxPerFileFromLinter) Name() string
type MaxSameIssues ¶
type MaxSameIssues struct {
// contains filtered or unexported fields
}
func NewMaxSameIssues ¶
func (MaxSameIssues) Finish ¶
func (p MaxSameIssues) Finish()
func (MaxSameIssues) Name ¶
func (MaxSameIssues) Name() string
type PathPrettifier ¶
type PathPrettifier struct {
// contains filtered or unexported fields
}
func NewPathPrettifier ¶
func NewPathPrettifier() *PathPrettifier
func (PathPrettifier) Finish ¶
func (p PathPrettifier) Finish()
func (PathPrettifier) Name ¶
func (p PathPrettifier) Name() string
type PathShortener ¶ added in v1.17.2
type PathShortener struct {
// contains filtered or unexported fields
}
func NewPathShortener ¶ added in v1.17.2
func NewPathShortener() *PathShortener
func (PathShortener) Finish ¶ added in v1.17.2
func (p PathShortener) Finish()
func (PathShortener) Name ¶ added in v1.17.2
func (p PathShortener) Name() string
type SkipDirs ¶ added in v1.17.2
type SkipDirs struct {
// contains filtered or unexported fields
}
func NewSkipDirs ¶ added in v1.17.2
type SkipFiles ¶ added in v1.6.1
type SkipFiles struct {
// contains filtered or unexported fields
}
func NewSkipFiles ¶ added in v1.6.1
type SourceCode ¶ added in v1.10.1
type SourceCode struct {
// contains filtered or unexported fields
}
func NewSourceCode ¶ added in v1.10.1
func NewSourceCode(lc *fsutils.LineCache, log logutils.Log) *SourceCode
func (SourceCode) Finish ¶ added in v1.10.1
func (p SourceCode) Finish()
func (SourceCode) Name ¶ added in v1.10.1
func (p SourceCode) Name() string
type UniqByLine ¶
type UniqByLine struct {
// contains filtered or unexported fields
}
func NewUniqByLine ¶
func NewUniqByLine(cfg *config.Config) *UniqByLine
func (UniqByLine) Finish ¶
func (p UniqByLine) Finish()
func (UniqByLine) Name ¶
func (p UniqByLine) Name() string
Source Files ¶
- autogenerated_exclude.go
- cgo.go
- diff.go
- exclude.go
- exclude_rules.go
- filename_unadjuster.go
- fixer.go
- identifier_marker.go
- max_from_linter.go
- max_per_file_from_linter.go
- max_same_issues.go
- nolint.go
- path_prettifier.go
- path_shortener.go
- processor.go
- skip_dirs.go
- skip_files.go
- source_code.go
- uniq_by_line.go
- utils.go
Click to show internal directories.
Click to hide internal directories.