-
Notifications
You must be signed in to change notification settings - Fork 341
lint: upgrade golangci-lint configuration #1275
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,95 +1,93 @@ | ||
| output: | ||
| # Make output more digestible with quickfix in vim/emacs/etc. | ||
| sort-results: true | ||
| print-issued-lines: false | ||
| version: "2" | ||
|
|
||
| issues: | ||
| # Print all issues reported by all linters. | ||
| max-issues-per-linter: 0 | ||
| max-same-issues: 0 | ||
|
|
||
| linters: | ||
| # We'll track the golangci-lint default linters manually | ||
| # instead of letting them change without our control. | ||
| disable-all: true | ||
| default: none | ||
| enable: | ||
| # golangci-lint defaults: | ||
| - gosimple | ||
| - govet | ||
| - ineffassign | ||
| - staticcheck | ||
| - unused | ||
|
|
||
| # Our own extras: | ||
| - gofumpt | ||
| - nolintlint # lints nolint directives | ||
| - revive | ||
| - errorlint | ||
| - nolintlint # lints //nolint directives | ||
| - revive | ||
|
|
||
| # License header check: | ||
| - goheader | ||
|
|
||
| linters-settings: | ||
| govet: | ||
| # These govet checks are disabled by default, but they're useful. | ||
| enable: | ||
| - nilness | ||
| - reflectvaluecompare | ||
| - sortslice | ||
| - unusedwrite | ||
|
|
||
| goheader: | ||
| values: | ||
| const: | ||
| COMPANY: 'Uber Technologies, Inc.' | ||
| regexp: | ||
| YEAR_RANGE: '\d{4}(-\d{4})?' | ||
| template: |- | ||
| Copyright (c) {{ YEAR_RANGE }} {{ COMPANY }} | ||
| settings: | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Github UI seems to be unnecessarily painful for this change:| |
||
|
|
||
| Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| of this software and associated documentation files (the "Software"), to deal | ||
| in the Software without restriction, including without limitation the rights | ||
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| copies of the Software, and to permit persons to whom the Software is | ||
| furnished to do so, subject to the following conditions: | ||
| # These govet checks are disabled by default, but they're useful. | ||
| govet: | ||
| enable: | ||
| - nilness | ||
| - reflectvaluecompare | ||
| - sortslice | ||
| - unusedwrite | ||
|
|
||
| The above copyright notice and this permission notice shall be included in | ||
| all copies or substantial portions of the Software. | ||
| goheader: | ||
| values: | ||
| const: | ||
| COMPANY: Uber Technologies, Inc. | ||
| regexp: | ||
| YEAR_RANGE: \d{4}(-\d{4})? | ||
| template: |- | ||
| Copyright (c) {{ YEAR_RANGE }} {{ COMPANY }} | ||
|
|
||
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| THE SOFTWARE. | ||
| Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| of this software and associated documentation files (the "Software"), to deal | ||
| in the Software without restriction, including without limitation the rights | ||
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| copies of the Software, and to permit persons to whom the Software is | ||
| furnished to do so, subject to the following conditions: | ||
|
|
||
| The above copyright notice and this permission notice shall be included in | ||
| all copies or substantial portions of the Software. | ||
|
|
||
| issues: | ||
| # Print all issues reported by all linters. | ||
| max-issues-per-linter: 0 | ||
| max-same-issues: 0 | ||
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| THE SOFTWARE. | ||
|
|
||
| # Don't ignore some of the issues that golangci-lint considers okay. | ||
| # This includes documenting all exported entities. | ||
| exclude-use-default: false | ||
| exclusions: | ||
| generated: lax | ||
| rules: | ||
| # Don't warn on unused parameters. | ||
| # Parameter names are useful; replacing them with '_' is undesirable. | ||
| - linters: [revive] | ||
| text: 'unused-parameter: parameter \S+ seems to be unused, consider removing or renaming it as _' | ||
|
|
||
| exclude-rules: | ||
| # Don't warn on unused parameters. | ||
| # Parameter names are useful; replacing them with '_' is undesirable. | ||
| - linters: [revive] | ||
| text: 'unused-parameter: parameter \S+ seems to be unused, consider removing or renaming it as _' | ||
| # staticcheck already has smarter checks for empty blocks. | ||
| # revive's empty-block linter has false positives. | ||
| # For example, as of writing this, the following is not allowed. | ||
| # for foo() { } | ||
| - linters: [revive] | ||
| text: 'empty-block: this block is empty, you can remove it' | ||
|
|
||
| # staticcheck already has smarter checks for empty blocks. | ||
| # revive's empty-block linter has false positives. | ||
| # For example, as of writing this, the following is not allowed. | ||
| # for foo() { } | ||
| - linters: [revive] | ||
| text: 'empty-block: this block is empty, you can remove it' | ||
| # It's okay if internal packages and examples in docs/ | ||
| # don't have package comments. | ||
| - linters: [revive] | ||
| path: .+/internal/.+|^internal/.+|^docs/.+ | ||
| text: should have a package comment | ||
|
|
||
| # It's okay if internal packages and examples in docs/ | ||
| # don't have package comments. | ||
| - linters: [revive] | ||
| path: '.+/internal/.+|^internal/.+|^docs/.+' | ||
| text: 'should have a package comment' | ||
| # It's okay for tests to use dot imports. | ||
| - linters: [revive] | ||
| path: _test\.go$ | ||
| text: should not use dot imports | ||
|
|
||
| # It's okay for tests to use dot imports. | ||
| - linters: [revive] | ||
| path: '_test\.go$' | ||
| text: 'should not use dot imports' | ||
| formatters: | ||
| enable: [gofumpt] | ||
| exclusions: | ||
| generated: lax | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -185,7 +185,7 @@ func TestExtract(t *testing.T) { | |
| defer app.RequireStart().RequireStop() | ||
|
|
||
| // Unexported fields are left unchanged. | ||
| assert.NotEqual(t, "foo", out.type4.foo) | ||
| assert.NotEqual(t, "foo", out.foo) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this related to the linter change?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. similar—yeah. it was a quickfix—not a breaking linter warning, but a linter message nonetheless. |
||
| }) | ||
|
|
||
| t.Run("DuplicateFields", func(t *testing.T) { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Accidental? On purpose?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh I see it's added below