-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Currently, golangci-lint has some issues that make it fail randomly. Disabling the `unused` linter seems to improve things, so let's do that until golangci-lint has a fix. See: - golangci/golangci-lint#827 - golangci/golangci-lint#885
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ if git grep -l \ | |
fi | ||
|
||
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s v1.22.1 | ||
bin/golangci-lint run -E gofmt -E unconvert -E misspell -E whitespace --timeout 2m --max-same-issues 10 | ||
bin/golangci-lint run -E gofmt -E unconvert -E misspell -E whitespace -D unused --timeout 2m --max-same-issues 10 | ||
|
||
npm install [email protected] prettier eslint-plugin-prettier eslint-config-cozy-app | ||
./node_modules/.bin/eslint "assets/scripts/**" tests/integration/konnector/*.js |