mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
142 lines
3.4 KiB
142 lines
3.4 KiB
linters: |
|
enable-all: false |
|
disable-all: true |
|
fast: false |
|
enable: |
|
- bidichk |
|
- depguard |
|
- dupl |
|
- errcheck |
|
- forbidigo |
|
- gocritic |
|
- gofmt |
|
- gofumpt |
|
- gosimple |
|
- govet |
|
- ineffassign |
|
- nakedret |
|
- nolintlint |
|
- revive |
|
- staticcheck |
|
- stylecheck |
|
- typecheck |
|
- unconvert |
|
- unused |
|
- wastedassign |
|
|
|
run: |
|
timeout: 10m |
|
|
|
output: |
|
sort-results: true |
|
|
|
linters-settings: |
|
stylecheck: |
|
checks: ["all", "-ST1005", "-ST1003"] |
|
nakedret: |
|
max-func-lines: 0 |
|
gocritic: |
|
disabled-checks: |
|
- ifElseChain |
|
- singleCaseSwitch # Every time this occurred in the code, there was no other way. |
|
revive: |
|
ignore-generated-header: false |
|
severity: warning |
|
confidence: 0.8 |
|
errorCode: 1 |
|
warningCode: 1 |
|
rules: |
|
- name: atomic |
|
- name: bare-return |
|
- name: blank-imports |
|
- name: constant-logical-expr |
|
- name: context-as-argument |
|
- name: context-keys-type |
|
- name: dot-imports |
|
- name: duplicated-imports |
|
- name: empty-lines |
|
- name: error-naming |
|
- name: error-return |
|
- name: error-strings |
|
- name: errorf |
|
- name: exported |
|
- name: identical-branches |
|
- name: if-return |
|
- name: increment-decrement |
|
- name: indent-error-flow |
|
- name: modifies-value-receiver |
|
- name: package-comments |
|
- name: range |
|
- name: receiver-naming |
|
- name: redefines-builtin-id |
|
- name: string-of-int |
|
- name: superfluous-else |
|
- name: time-naming |
|
- name: unconditional-recursion |
|
- name: unexported-return |
|
- name: unreachable-code |
|
- name: var-declaration |
|
- name: var-naming |
|
gofumpt: |
|
extra-rules: true |
|
depguard: |
|
rules: |
|
main: |
|
deny: |
|
- pkg: encoding/json |
|
desc: use gitea's modules/json instead of encoding/json |
|
- pkg: github.com/unknwon/com |
|
desc: use gitea's util and replacements |
|
- pkg: io/ioutil |
|
desc: use os or io instead |
|
- pkg: golang.org/x/exp |
|
desc: it's experimental and unreliable |
|
- pkg: code.gitea.io/gitea/modules/git/internal |
|
desc: do not use the internal package, use AddXxx function instead |
|
- pkg: gopkg.in/ini.v1 |
|
desc: do not use the ini package, use gitea's config system instead |
|
- pkg: gitea.com/go-chi/cache |
|
desc: do not use the go-chi cache package, use gitea's cache system |
|
|
|
issues: |
|
max-issues-per-linter: 0 |
|
max-same-issues: 0 |
|
exclude-dirs: [node_modules, public, web_src] |
|
exclude-case-sensitive: true |
|
exclude-rules: |
|
- path: _test\.go |
|
linters: |
|
- gocyclo |
|
- errcheck |
|
- dupl |
|
- gosec |
|
- unparam |
|
- staticcheck |
|
- path: models/migrations/v |
|
linters: |
|
- gocyclo |
|
- errcheck |
|
- dupl |
|
- gosec |
|
- path: cmd |
|
linters: |
|
- forbidigo |
|
- text: "webhook" |
|
linters: |
|
- dupl |
|
- text: "`ID' should not be capitalized" |
|
linters: |
|
- gocritic |
|
- text: "swagger" |
|
linters: |
|
- unused |
|
- deadcode |
|
- text: "argument x is overwritten before first use" |
|
linters: |
|
- staticcheck |
|
- text: "commentFormatting: put a space between `//` and comment text" |
|
linters: |
|
- gocritic |
|
- text: "exitAfterDefer:" |
|
linters: |
|
- gocritic
|
|
|