Skip to content

Commit

Permalink
lint (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
xissy authored Aug 12, 2018
1 parent 5ef87b0 commit 9798aca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build:
docker:
# specify the version
- image: circleci/golang:1.9
- image: circleci/golang:1.10

# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
Expand All @@ -22,8 +22,8 @@ jobs:
- checkout

# specify any bash command here prefixed with `run: `
- run: go get -v -t -d ./...
- run: go get -u github.com/alecthomas/gometalinter
- run: gometalinter --install
- run: gometalinter --disable=golint ./...
- run: go get github.com/tools/godep
- run: dep ensure
- run: go test -v -cover ./...
- run: go get -u github.com/mgechev/revive
- run: revive -exclude vendor/... ./...
2 changes: 1 addition & 1 deletion lexorank.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This package is a simple implementation of LexoRank.
// Package lexorank is a simple implementation of LexoRank.
//
// LexoRank is a ranking system introduced by Atlassian JIRA.
// For details - https://www.youtube.com/watch?v=OjQv9xMoFbg
Expand Down

0 comments on commit 9798aca

Please sign in to comment.