summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/graph-gophers/graphql-go/.golangci.yml
blob: c6741d58a1db9534e644e12c612757ee6044e1ac (plain) (blame)
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
run:
  timeout: 5m

linters-settings:
  gofmt:
    simplify: true
  govet:
    check-shadowing: true
    enable-all: true
    disable:
      - fieldalignment
      - deepequalerrors # remove later

linters:
  disable-all: true
  enable:
    - deadcode
    - gofmt
    - gosimple
    - govet
    - ineffassign
    - exportloopref
    - structcheck
    - staticcheck
    - unconvert
    - unused
    - varcheck
    - misspell
    - goimports

issues:
  exclude-rules:
    - linters:
      - unused
      path: "graphql_test.go"