Skip to content

Commit 7d6b249

Browse files
authored
Merge branch 'master' into fixInlineInMergeLineIssues
2 parents c361279 + a2fd652 commit 7d6b249

File tree

12 files changed

+389
-2071
lines changed

12 files changed

+389
-2071
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ body:
1111
required: true
1212
- label: Yes, I've searched similar issues on GitHub and didn't find any.
1313
required: true
14-
- label: Yes, I've included all information below (version, config, etc).
14+
- label: Yes, I've included all information below (version, config, etc.).
1515
required: true
16-
- label: Yes, I've tried with the standalone linter if available. (https://golangci-lint.run/usage/linters/)
16+
- label: Yes, I've tried with the standalone linter if available (e.g., gocritic, go vet, etc.). (https://golangci-lint.run/usage/linters/)
1717
required: true
1818

1919
- type: textarea

.github/workflows/pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
# - 1.18rc1 -> 1.18.0-rc.1
4444
go-version: ${{ env.GO_VERSION }}
4545
- name: lint
46-
uses: golangci/golangci-lint-action@v3.2.0
46+
uses: golangci/golangci-lint-action@v3.3.1
4747
with:
4848
version: latest
4949
# skip cache because of flaky behaviors

.golangci.reference.yml

+3
Original file line numberDiff line numberDiff line change
@@ -1776,6 +1776,9 @@ linters-settings:
17761776
# Suggest the use of constant.Kind.String().
17771777
# Default: false
17781778
constant-kind: true
1779+
# Suggest the use of syslog.Priority.
1780+
# Default: false
1781+
syslog-priority: true
17791782

17801783
unparam:
17811784
# Inspect exported functions.

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Follow the news and releases on our [twitter](https://twitter.com/golangci) and our [blog](https://medium.com/golangci).
22
There is the most valuable changes log:
33

4+
### v1.50.1
5+
6+
1. updated linters
7+
* `contextcheck`: from 1.1.2 to 1.1.3
8+
* `go-mnd`: from 2.5.0 to 2.5.1
9+
* `wrapcheck`: from 2.6.2 to 2.7.0
10+
* `revive`: fix configuration parsing
11+
* `lll`: skip imports
12+
2. misc.
13+
* windows: remove redundant character escape '\/'
14+
* code-climate: add default severity
15+
416
### v1.50.0
517

618
1. new linters

0 commit comments

Comments
 (0)