forked from ent/ent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
75 lines (72 loc) · 1.46 KB
/
.golangci.yml
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
run:
timeout: 3m
linters-settings:
errcheck:
ignore: fmt:.*,Read|Write|Close|Exec,io:Copy
dupl:
threshold: 100
funlen:
lines: 100
statements: 80
goheader:
template: |-
Copyright 2019-present Facebook Inc. All rights reserved.
This source code is licensed under the Apache 2.0 license found
in the LICENSE file in the root directory of this source tree.
linters:
disable-all: true
enable:
- bodyclose
- deadcode
- depguard
- dogsled
- dupl
- errcheck
- funlen
- gocritic
- gofmt
- goheader
- gosec
- gosimple
- govet
- ineffassign
- interfacer
- misspell
- staticcheck
- structcheck
- stylecheck
- typecheck
- unconvert
- unused
- varcheck
- whitespace
issues:
exclude-rules:
- path: _test\.go
linters:
- dupl
- funlen
- gosec
- linters:
- unused
source: ent.Schema
- path: entc/integration/ent/schema/card.go
text: "`internal` is unused"
- path: dialect/sql/builder.go
text: "can be `Querier`"
linters:
- interfacer
- path: dialect/sql/builder.go
text: "SQL string concatenation"
linters:
- gosec
- path: dialect/sql/schema
linters:
- dupl
- gosec
- text: "Expect WriteFile permissions to be 0600 or less"
linters:
- gosec
- path: privacy/privacy.go
linters:
- stylecheck