summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorMohammed Al Sahaf <msaa1990@gmail.com>2019-10-16 00:37:46 +0300
committerMatt Holt <mholt@users.noreply.github.com>2019-10-15 15:37:46 -0600
commite3726588b416682db28ea9173bf2c36e4554ce05 (patch)
tree134ff2406bb89000b20555c84cf1b68154835a56 /azure-pipelines.yml
parentabf5ab340ed76792214ae80c62df7abe0ad1b8a8 (diff)
v2: Project-and-CI-wide linter config (#2812)
* v2: split golangci-lint configuration into its own file to allow code editors to take advantage of it * v2: simplify code * v2: set the correct lint output formatting * v2: invert the logic of linter's configuration of output formatting to allow the editor convenience over CI-specific customization. Customize the output format in CI by passing the flag. * v2: remove irrelevant golangci-lint config
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index fbee6fb..8c86cd8 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -89,7 +89,8 @@ steps:
displayName: Get dependencies
- script: |
- (golangci-lint run --out-format junit-xml -E gofmt -E goimports -E misspell) > test-results/lint-result.xml
+ # its behavior is governed by .golangci.yml
+ (golangci-lint run --out-format junit-xml) > test-results/lint-result.xml
exit 0
workingDirectory: '$(modulePath)'
continueOnError: true