gitattributes

package
v0.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 3, 2023 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Group

type Group struct {
	LinguistGeneratedPatterns []Pattern
}

Group is a logical collection of files. Check for a file's inclusion in the group using the Match method.

func NewGroup

func NewGroup(gitAttributesContent func() ([]byte, error)) (*Group, error)

NewGroup reads the .gitattributes file in the root of the repository only.

func (*Group) IsLinguistGenerated

func (g *Group) IsLinguistGenerated(path string) bool

IsLinguistGenerated determines whether a file, given here by its full path is included in the .gitattributes linguist-generated group. These files are excluded from language stats and suppressed in diffs. https://github.com/github/linguist/#generated-code Unmarked paths (linguist-generated=false) are not supported.

type Pattern

type Pattern interface {
	// Match matches the given path to the pattern.
	Match(path string) bool
}

Pattern defines a single gitattributes pattern.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL