File: .golangci.yml

package info (click to toggle)
golang-github-ibm-sarama 1.45.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,964 kB
  • sloc: makefile: 35; sh: 19
file content (88 lines) | stat: -rw-r--r-- 1,725 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# yaml-language-server: $schema=https://golangci-lint.run/jsonschema/golangci.jsonschema.json
run:
  timeout: 5m

linters-settings:
  govet:
    enable-all: true
    disable:
      - fieldalignment
      - shadow
  gocyclo:
    min-complexity: 99
  dupl:
    threshold: 100
  goconst:
    min-len: 2
    min-occurrences: 3
  misspell:
    locale: US
  goimports:
    local-prefixes: github.com/IBM/sarama
  gocritic:
    enabled-tags:
      - diagnostic
      - performance
      # - experimental
      # - opinionated
      # - style
    enabled-checks:
      - importShadow
      - nestingReduce
      - stringsCompare
      # - unnamedResult
      # - whyNoLint
    disabled-checks:
      - assignOp
      - appendAssign
      - commentedOutCode
      - hugeParam
      - ifElseChain
      - singleCaseSwitch
      - sloppyReassign
  funlen:
    lines: 300
    statements: 300

  depguard:
    rules:
      main:
        deny:
          - pkg: "io/ioutil"
            desc: Use the "io" and "os" packages instead.

linters:
  disable-all: true
  enable:
    - bodyclose
    - depguard
    # - copyloopvar
    - dogsled
    - errcheck
    - errorlint
    - funlen
    - gochecknoinits
    - gocritic
    - gocyclo
    - gofmt
    - goimports
    - gosec
    - govet
    - misspell
    - nilerr
    - typecheck
    - unconvert
    - unused
    - whitespace

issues:
  exclude:
    - "G115: integer overflow conversion"
    - "G404: Use of weak random number generator"
  exclude-rules:
    # exclude some linters from running on certains files.
    - path: functional.*_test\.go
      linters:
        - paralleltest
  # maximum count of issues with the same text. set to 0 for unlimited. default is 3.
  max-same-issues: 0