Skip to content

Commit

Permalink
Merge pull request securego#146 from GoASTScanner/experimental
Browse files Browse the repository at this point in the history
Merge experimental / refactor
  • Loading branch information
gcmurphy authored Jan 5, 2018
2 parents 6de76c9 + 867d300 commit 3520a5a
Show file tree
Hide file tree
Showing 106 changed files with 3,042 additions and 12,011 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
*.a
*.so
*.swp
gas

# Folders
_obj
_test
vendor

# Architecture specific extensions/prefixes
*.[568vq]
Expand Down
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,11 @@ before_script:
go:
- 1.5
- tip
install:
- go get -v github.com/onsi/ginkgo/ginkgo
- go get -v github.com/onsi/gomega
- go get -v -t ./...
- export PATH=$PATH:$HOME/gopath/bin

script: ginkgo -r

285 changes: 285 additions & 0 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Godeps/Readme

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,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 is
accomplished via [go-glob](github.com/ryanuber/go-glob). Multiple patterns can be specified as follows:

```
$ gas -skip=tests* -skip=*_example.go ./...
```
Gas will ignore dependencies in your vendor directory any files
that are not considered build artifacts by the compiler (so test files).

#### Annotating code

Expand Down
Loading

0 comments on commit 3520a5a

Please sign in to comment.