forked from FloatTech/ZeroBot-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
142 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Lint | ||
|
||
on: [push] | ||
|
||
jobs: | ||
golangci: | ||
name: lint_golangci-lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2.3.4 | ||
|
||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v2.5.2 | ||
with: | ||
version: latest | ||
|
||
- name: Commit back | ||
continue-on-error: true | ||
run: | | ||
git config --local user.name 'github-actions[bot]' | ||
git config --local user.email '41898282+github-actions[bot]@users.noreply.github.com' | ||
git add --all | ||
git commit -m "🎨 改进代码样式" | ||
git push |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Suggester | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
golangci: | ||
name: lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2.3.4 | ||
|
||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v2.5.2 | ||
with: | ||
version: latest | ||
|
||
- name: Suggester | ||
uses: reviewdog/action-suggester@v1.0.1 | ||
with: | ||
tool_name: golangci-lint |
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 |
---|---|---|
@@ -0,0 +1,94 @@ | ||
linters-settings: | ||
errcheck: | ||
ignore: fmt:.*,io/ioutil:^Read.* | ||
ignoretests: true | ||
|
||
goimports: | ||
local-prefixes: github.com/Yiwen-Chan/ZeroBot-Plugin | ||
|
||
gocritic: | ||
disabled-checks: | ||
- exitAfterDefer | ||
|
||
forbidigo: | ||
# Forbid the following identifiers | ||
forbid: | ||
- ^fmt\.Errorf$ # consider errors.Errorf in github.com/pkg/errors | ||
|
||
linters: | ||
# please, do not use `enable-all`: it's deprecated and will be removed soon. | ||
# inverted configuration with `enable-all` and `disable` is not scalable during updates of golangci-lint | ||
fast: true | ||
enable: | ||
- bodyclose | ||
- deadcode | ||
- depguard | ||
- dogsled | ||
- dupl | ||
- errcheck | ||
- exportloopref | ||
- exhaustive | ||
#- funlen | ||
#- goconst | ||
- gocritic | ||
#- gocyclo | ||
- gofmt | ||
- goimports | ||
- goprintffuncname | ||
#- gosec | ||
- gosimple | ||
- govet | ||
- ineffassign | ||
- misspell | ||
- nolintlint | ||
- rowserrcheck | ||
- staticcheck | ||
- structcheck | ||
- stylecheck | ||
- typecheck | ||
- unconvert | ||
- unparam | ||
- unused | ||
- varcheck | ||
- whitespace | ||
- prealloc | ||
- predeclared | ||
- asciicheck | ||
- forbidigo | ||
- makezero | ||
- revive | ||
#- interfacer | ||
|
||
# don't enable: | ||
# - scopelint | ||
# - gochecknoglobals | ||
# - gocognit | ||
# - godot | ||
# - godox | ||
# - goerr113 | ||
# - interfacer | ||
# - maligned | ||
# - nestif | ||
# - testpackage | ||
# - wsl | ||
|
||
run: | ||
# default concurrency is a available CPU number. | ||
# concurrency: 4 # explicitly omit this value to fully utilize available resources. | ||
deadline: 5m | ||
issues-exit-code: 1 | ||
tests: false | ||
|
||
# output configuration options | ||
output: | ||
format: "colored-line-number" | ||
print-issued-lines: true | ||
print-linter-name: true | ||
uniq-by-line: true | ||
|
||
issues: | ||
# Fix found issues (if it's supported by the linter) | ||
fix: true | ||
exclude-use-default: false | ||
exclude: | ||
- "Error return value of .((os.)?std(out|err)..*|.*Close|.*Flush|os.Remove(All)?|.*print(f|ln)?|os.(Un)?Setenv). is not check" |
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 |
---|---|---|
|
@@ -175,7 +175,6 @@ func init() { | |
return | ||
} | ||
}) | ||
|
||
} | ||
|
||
func botPath() string { | ||
|
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