Skip to content

Commit

Permalink
Add .editorconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
khlieng committed Apr 28, 2017
1 parent 702dfee commit abaf21b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 9 deletions.
15 changes: 15 additions & 0 deletions .editorconfig
@@ -0,0 +1,15 @@
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true

[*.go]
indent_style = tab

[*.md]
trim_trailing_whitespace = false
18 changes: 9 additions & 9 deletions .travis.yml
@@ -1,16 +1,16 @@
language: go

go:
- 1.7.5
- 1.8.1
- tip
- 1.7.5
- 1.8.1
- tip

install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover

script:
- go vet $(go list ./... | grep -v '/vendor/')
- go test -v -race $(go list ./... | grep -v '/vendor/')
- goveralls -package=github.com/Castcloud/castcloud-go-server/api -service=travis-ci
- go vet $(go list ./... | grep -v '/vendor/')
- go test -v -race $(go list ./... | grep -v '/vendor/')
- goveralls -package=github.com/Castcloud/castcloud-go-server/api -service=travis-ci

0 comments on commit abaf21b

Please sign in to comment.