summaryrefslogtreecommitdiff
path: root/.golangci.yml
blob: 34dafc1b0c95d645aeebb84385dd3b171380ec80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright (C) 2022-2023  Luke Shumaker <lukeshu@lukeshu.com>
#
# SPDX-License-Identifier: GPL-2.0-or-later

linters:
  disable:
    - structcheck # doesn't support Go 1.18 yet
  enable:
    - forbidigo
    - gofmt
linters-settings:
  gofmt:
    simplify: true
issues:
  max-issues-per-linter: 0
  max-same-issues: 0