Skip to content

Commit

Permalink
updating skip cli help and readme description
Browse files Browse the repository at this point in the history
  • Loading branch information
David Lawrence committed Dec 13, 2016
1 parent c68ed64 commit 5f1c2df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ $ gas -exclude=G303 ./...

#### Excluding files:

Gas can be told to \ignore paths that match a supplied pattern using the 'skip' command line option. This accomplished via
[filepath.Match](https://golang.org/pkg/path/filepath/#Match). Multiple patterns can be specified as follows:
Gas can be told to \ignore paths that match a supplied pattern using the 'skip' command line option. This is
accomplished via [go-glob](github.com/ryanuber/go-glob). Multiple patterns can be specified as follows:

```
$ gas -skip=tests* -skip=*_example.go ./...
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ func main() {

// Exclude files
excluded := newFileList("*_test.go")
flag.Var(excluded, "skip", "File pattern to exclude from scan")
flag.Var(excluded, "skip", "File pattern to exclude from scan. Uses simple * globs and requires full match")

incRules := ""
flag.StringVar(&incRules, "include", "", "Comma separated list of rules IDs to include. (see rule list)")
Expand Down

0 comments on commit 5f1c2df

Please sign in to comment.