-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
1697 lines (1424 loc) · 48.6 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
# https://github.com/golangci/golangci-lint/blob/master/.golangci.reference.yml
# https://golangci-lint.run/jsonschema/golangci.jsonschema.json
# goplicate-start:run
run:
# The default concurrency value is the number of available CPU.
# concurrency: 4
# timeout for analysis, e.g. 30s, 5m, default is 1m
timeout: 1m
# exit code when at least one issue was found, default is 1
issues-exit-code: 1
# include test files or not, default is true
tests: true
# list of build tags, all linters use it. Default is empty list.
# build-tags: []
# If set we pass it to "go list -mod={option}". From "go help modules":
# If invoked with -mod=readonly, the go command is disallowed from the implicit
# automatic updating of go.mod described above. Instead, it fails when any changes
# to go.mod are needed. This setting is most useful to check that go.mod does
# not need updates, such as in a continuous integration and testing system.
# If invoked with -mod=vendor, the go command assumes that the vendor
# directory holds the correct copies of dependencies and ignores
# the dependency descriptions in go.mod.
#
# Allowed values: readonly|vendor|mod
# By default, it isn't set.
modules-download-mode: readonly
# Allow multiple parallel golangci-lint instances running.
# If false (default) - golangci-lint acquires file lock on start.
allow-parallel-runners: true
# Allow multiple golangci-lint instances running, but serialize them around a lock.
# If false, golangci-lint exits with an error if it fails to acquire file lock on start.
# Default: false
allow-serial-runners: true
# Define the Go version limit.
# Mainly related to generics support since go1.18.
# Default: use Go version from the go.mod file, fallback on the env var `GOVERSION`, fallback on 1.18
# go: "1.21"
# goplicate-end:run
# goplicate-start:severity
severity:
case-sensitive: false
# goplicate-end:severity
# goplicate-start:linters
linters:
# please, do not use `enable-all`: it's deprecated and will be removed soon.
# inverted configuration with `enable-all` and `disable` is not scalable
# during updates of golangci-lint
disable-all: true
enable:
# - asasalint
# - bidichk
- copyloopvar
# - cyclop
- decorder
# - depguard
- dogsled
- dupl
- dupword
- errcheck
- errchkjson
- errorlint
- exhaustive
# - forbidigo
- funlen
# - ginkgolinter
- gocognit
- goconst
- gocritic
# - gocyclo
# - godot
- godox
- gofmt
- gofumpt
# - goheader
- goimports
# - gomoddirectives
# - gomodguard
- gosec
- gosimple
# - gosmopolitan
- govet
# - grouper
- importas
- interfacebloat
# - ireturn
- lll
# - loggercheck
- maintidx
- makezero
- misspell
- mnd
# - musttag
- nakedret
- nestif
- nilnil
- nlreturn
# - nolintlint
- nonamedreturns
- paralleltest
# - prealloc
# - predeclared
# - promlinter
# - reassign
# - revive: @TODO: Review and enable
# - rowserrcheck
- sloglint
- spancheck
- staticcheck
- stylecheck
- tagalign
- tagliatelle
# - tenv
# - testifylint
# - testpackage
- thelper
- unparam
- unused
- usestdlibvars
# - varnamelen
- whitespace
- wrapcheck
- wsl
# goplicate-end:linters
# goplicate-start:output
output:
# The formats used to render issues.
# Format: `colored-line-number`, `line-number`, `json`, `colored-tab`, `tab`, `checkstyle`, `code-climate`, `junit-xml`, `github-actions`, `teamcity`
# Output path can be either `stdout`, `stderr` or path to the file to write to.
#
# For the CLI flag (`--out-format`), multiple formats can be specified by separating them by comma.
# The output can be specified for each of them by separating format name and path by colon symbol.
# Example: "--out-format=checkstyle:report.xml,json:stdout,colored-line-number"
# The CLI flag (`--out-format`) override the configuration file.
#
# Default:
# formats:
# - format: colored-line-number
# path: stdout
formats:
- format: colored-line-number
path: stdout
# Print lines of code with issue.
# Default: true
print-issued-lines: true
# Print linter name in the end of issue text.
# Default: true
print-linter-name: true
# Make issues output unique by line.
# Default: true
uniq-by-line: true
# Add a prefix to the output file references.
# Default is no prefix.
path-prefix: ''
# Sort results by the order defined in `sort-order`.
sort-results: true
# Order to use when sorting results.
# Require `sort-results` to `true`.
# Possible values: `file`, `linter`, and `severity`.
#
# If the severity values are inside the following list, they are ordered in this order:
# 1. error
# 2. warning
# 3. high
# 4. medium
# 5. low
# Either they are sorted alphabetically.
#
# Default: ["file"]
sort-order:
- linter
- severity
- file # filepath, line, and column.
# Show statistics per linter.
# Default: false
show-stats: true
# goplicate-end:output
linters-settings:
# goplicate-start:settings-asasalint
# asasalint:
# goplicate-end:settings-asasalint
# goplicate-start:settings-bidichk
# bidichk:
# goplicate-end:settings-bidichk
# goplicate-start:settings-copyloopvar
copyloopvar:
# If true, ignore aliasing of loop variables.
# Default: false
ignore-alias: false
# goplicate-end:settings-copyloopvar
# goplicate-start:settings-cyclop
# cyclop:
# goplicate-end:settings-cyclop
# goplicate-start:settings-decorder
decorder:
# Required order of `type`, `const`, `var` and `func` declarations inside a file.
# Default: types before constants before variables before functions.
dec-order:
- const
- var
- type
- func
# If true, order of declarations is not checked at all.
# Default: true (disabled)
disable-dec-order-check: false
# If true, `init` func can be anywhere in file (does not have to be declared before all other functions).
# Default: true (disabled)
disable-init-func-first-check: false
# If true, multiple global `type`, `const` and `var` declarations are allowed.
# Default: true (disabled)
disable-dec-num-check: false
# goplicate-end:settings-decorder
# goplicate-start:settings-depguard
# depguard:
# goplicate-end:settings-depguard
# goplicate-start:settings-dogsled
dogsled:
# checks assignments with too many blank identifiers; default is 2
max-blank-identifiers: 2
# goplicate-end:settings-dogsled
# goplicate-start:settings-dupl
dupl:
# tokens count to trigger issue, 150 by default
threshold: 100
# goplicate-end:settings-dupl
# goplicate-start:settings-dupword
dupword:
# Keywords for detecting duplicate words.
# If this list is not empty, only the words defined in this list will be detected.
# Default: []
keywords:
- a
- an
- and
- of
- or
- the
- this
# Keywords used to ignore detection.
# Default: []
# ignore: []
# goplicate-end:settings-dupword
# goplicate-start:settings-errcheck
errcheck:
# report about not checking of errors in type assetions: `a := b.(MyStruct)`;
# default is false: such cases aren't reported by default.
check-type-assertions: true
# report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`;
# default is false: such cases aren't reported by default.
check-blank: false
# goplicate-end:settings-errcheck
# goplicate-start:settings-errchkjson
errchkjson:
# With check-error-free-encoding set to true, errchkjson does warn about
# errors from json encoding functions that are safe to be ignored, because
# they are not possible to happen.
#
# if check-error-free-encoding is set to true and errcheck linter is
# enabled, it is recommended to add the following exceptions to prevent from
# false positives:
#
# linters-settings:
# errcheck:
# exclude-functions:
# - encoding/json.Marshal
# - encoding/json.MarshalIndent
#
# Default: false
check-error-free-encoding: false
# Issue on struct encoding that doesn't have exported fields.
# Default: false
report-no-exported: false
# goplicate-end:settings-errchkjson
# goplicate-start:settings-errorlint
errorlint:
# Check whether fmt.Errorf uses the %w verb for formatting errors.
# See the https://github.com/polyfloyd/go-errorlint for caveats.
# Default: true
errorf: true
# Check for plain type assertions and type switches.
# Default: true
asserts: true
# Check for plain error comparisons.
# Default: true
comparison: true
# goplicate-end:settings-errorlint
# goplicate-start:settings-exhaustive
exhaustive:
# Program elements to check for exhaustiveness.
# Default: [ switch ]
check:
- switch
- map
# Check switch statements in generated files also.
# Default: false
check-generated: true
# Presence of "default" case in switch statements satisfies exhaustiveness,
# even if all enum members are not listed.
# Default: false
default-signifies-exhaustive: true
# Enum members matching the supplied regex do not have to be listed in
# switch statements to satisfy exhaustiveness.
# Default: ""
# ignore-enum-members: "Example.+"
# Enum types matching the supplied regex do not have to be listed in
# switch statements to satisfy exhaustiveness.
# Default: ""
# ignore-enum-types: "Example.+"
# Consider enums only in package scopes, not in inner scopes.
# Default: false
package-scope-only: false
# Only run exhaustive check on switches with "//exhaustive:enforce" comment.
# Default: false
explicit-exhaustive-switch: false
# Only run exhaustive check on map literals with "//exhaustive:enforce" comment.
# Default: false
explicit-exhaustive-map: false
# goplicate-end:settings-exhaustive
# goplicate-start:settings-exhaustruct
exhaustruct:
# List of regular expressions to match struct packages and names.
# If this list is empty, all structs are tested.
# Default: []
# include: []
# List of regular expressions to exclude struct packages and names from check.
# Default: []
# exclude: []
# goplicate-end:settings-exhaustruct
# goplicate-start:settings-forbidigo
# forbidigo:
# goplicate-end:settings-forbidigo
# goplicate-start:settings-funlen
funlen:
# Checks the number of lines in a function.
# If lower than 0, disable the check.
# Default: 60
lines: -1
# Checks the number of statements in a function.
# If lower than 0, disable the check.
# Default: 40
statements: -1
# Ignore comments when counting lines.
# Default false
ignore-comments: true
# goplicate-end:settings-funlen
# goplicate-start:settings-ginkgolinter
# ginkgolinter:
# goplicate-end:settings-ginkgolinter
# goplicate-start:settings-gocognit
gocognit:
# Minimal code complexity to report.
# Default: 30 (but we recommend 10-20)
min-complexity: 20
# goplicate-end:settings-gocognit
# goplicate-start:settings-goconst
goconst:
# Minimal length of string constant.
# Default: 3
min-len: 80
# Minimum occurrences of constant string count to trigger issue.
# Default: 3
min-occurrences: 3
# Ignore test files.
# Default: false
ignore-tests: false
# Look for existing constants matching the values.
# Default: true
match-constant: true
# Search also for duplicated numbers.
# Default: false
numbers: false
# Minimum value, only works with goconst.numbers
# Default: 3
# min: 3
# Maximum value, only works with goconst.numbers
# Default: 3
# max: 3
# Ignore when constant is not used as function argument.
# Default: true
ignore-calls: true
# goplicate-end:settings-goconst
# goplicate-start:settings-gocritic
gocritic:
# Disable all checks.
# Default: false
# disable-all: true
# Which checks should be enabled in addition to default checks; can't be combined with 'disabled-checks'.
# By default, list of stable checks is used (https://go-critic.github.io/overview#checks-overview):
# appendAssign, argOrder, assignOp, badCall, badCond, captLocal, caseOrder, codegenComment, commentFormatting,
# defaultCaseOrder, deprecatedComment, dupArg, dupBranchBody, dupCase, dupSubExpr, elseif, exitAfterDefer,
# flagDeref, flagName, ifElseChain, mapKey, newDeref, offBy1, regexpMust, singleCaseSwitch, sloppyLen,
# sloppyTypeAssert, switchTrue, typeSwitchVar, underef, unlambda, unslice, valSwap, wrapperFunc
# To see which checks are enabled run `GL_DEBUG=gocritic golangci-lint run --enable=gocritic`.
# enabled-checks:
# Enable all checks.
# Default: false
# enable-all: true
# Enable multiple checks by tags, run `GL_DEBUG=gocritic golangci-lint run` to see all tags and checks.
# See https://github.com/go-critic/go-critic#usage -> section "Tags".
# Default: []
enabled-tags:
- diagnostic
- experimental
- opinionated
- performance
- style
# Settings passed to gocritic.
# The settings key is the name of a supported gocritic checker.
# The list of supported checkers can be find in https://go-critic.github.io/overview.
settings:
captLocal:
# Whether to restrict checker to params only.
# Default: true
paramsOnly: true
elseif:
# Whether to skip balanced if-else pairs.
# Default: true
skipBalanced: true
hugeParam:
# Size in bytes that makes the warning trigger.
# Default: 80
sizeThreshold: 80
nestingReduce:
# Min number of statements inside a branch to trigger a warning.
# Default: 5
bodyWidth: 5
rangeExprCopy:
# Size in bytes that makes the warning trigger.
# Default: 512
sizeThreshold: 512
# Whether to check test functions
# Default: true
skipTestFuncs: true
rangeValCopy:
# Size in bytes that makes the warning trigger.
# Default: 128
sizeThreshold: 128
# Whether to check test functions.
# Default: true
skipTestFuncs: true
ruleguard:
# Enable debug to identify which 'Where' condition was rejected.
# The value of the parameter is the name of a function in a ruleguard file.
#
# When a rule is evaluated:
# If:
# The Match() clause is accepted; and
# One of the conditions in the Where() clause is rejected,
# Then:
# ruleguard prints the specific Where() condition that was rejected.
#
# The flag is passed to the ruleguard 'debug-group' argument.
# Default: ""
# debug: ''
# Determines the behavior when an error occurs while parsing ruleguard files.
# If flag is not set, log error and skip rule files that contain an error.
# If flag is set, the value must be a comma-separated list of error conditions.
# - 'all': fail on all errors.
# - 'import': ruleguard rule imports a package that cannot be found.
# - 'dsl': gorule file does not comply with the ruleguard DSL.
# Default: ""
# failOn: ''
# Comma-separated list of file paths containing ruleguard rules.
# If a path is relative, it is relative to the directory where the golangci-lint command is executed.
# The special '${configDir}' variable is substituted with the absolute directory containing the golangci config file.
# Glob patterns such as 'rules-*.go' may be specified.
# Default: ""
# rules: ''
# Comma-separated list of enabled groups or skip empty to enable everything.
# Tags can be defined with # character prefix.
# Default: "<all>"
# enable: "myGroupName,#myTagName"
# Comma-separated list of disabled groups or skip empty to enable everything.
# Tags can be defined with # character prefix.
# Default: ""
# disable: "myGroupName,#myTagName"
tooManyResultsChecker:
# Maximum number of results.
# Default: 5
maxResults: 20
truncateCmp:
# Whether to skip int/uint/uintptr types.
# Default: true
skipArchDependent: true
underef:
# Whether to skip (*x).method() calls where x is a pointer receiver.
# Default: true
skipRecvDeref: true
unnamedResult:
# Whether to check exported functions.
# Default: false
checkExported: false
# goplicate-end:settings-gocritic
# goplicate-start:settings-gocyclo
# gocyclo:
# goplicate-end:settings-gocyclo
# goplicate-start:settings-godot
# godot:
# goplicate-end:settings-godot
# goplicate-start:settings-godox
godox:
# report any comments starting with keywords, this is useful for TODO or
# FIXME comments that might be left in the code accidentally and should be
# resolved before merging
keywords:
- BUG
- FIXME
- HACK
- NOTE
- OPTIMIZE
- TODO
- '@TODO'
# goplicate-end:settings-godox
# goplicate-start:settings-gofmt
gofmt:
# Simplify code: gofmt with `-s` option.
# Default: true
simplify: true
# Apply the rewrite rules to the source before reformatting.
# https://pkg.go.dev/cmd/gofmt
# Default: []
rewrite-rules:
- pattern: interface{}
replacement: any
- pattern: a[b:len(a)]
replacement: a[b:]
# goplicate-end:settings-gofmt
# goplicate-start:settings-gofumpt
# gofumpt:
# # Module path which contains the source code being formatted.
# # Default: ""
# # module-path: github.com/org/project
# # Choose whether to use the extra rules.
# # Default: false
# extra-rules: true
# goplicate-end:settings-gofumpt
# goplicate-start:settings-goheader
# goheader:
# goplicate-end:settings-goheader
# goplicate-start:settings-goimports
goimports:
# A comma-separated list of prefixes, which, if set, checks import paths
# with the given prefixes are grouped after 3rd-party packages.
# Default: ""
local-prefixes: github.com/northwood-labs/
# goplicate-end:settings-goimports
# goplicate-start:settings-mnd
mnd:
# List of enabled checks, see https://github.com/tommy-muehle/go-mnd/#checks for description.
# Default: ["argument", "case", "condition", "operation", "return", "assign"]
checks:
- argument
- case
- condition
- operation
- return
- assign
# List of numbers to exclude from analysis.
# The numbers should be written as string.
# Values always ignored: "1", "1.0", "0" and "0.0"
# Default: []
ignored-numbers:
- '0666'
- '0755'
# List of file patterns to exclude from analysis.
# Values always ignored: `.+_test.go`
# Default: []
# ignored-files:
# - 'magic1_.+\.go$'
# List of function patterns to exclude from analysis.
# Following functions are always ignored: `time.Date`,
# `strconv.FormatInt`, `strconv.FormatUint`, `strconv.FormatFloat`,
# `strconv.ParseInt`, `strconv.ParseUint`, `strconv.ParseFloat`.
# Default: []
# ignored-functions:
# - '^math\.'
# - '^http\.StatusText$'
# goplicate-end:settings-mnd
# goplicate-start:settings-gomoddirectives
# gomoddirectives:
# goplicate-end:settings-gomoddirectives
# goplicate-start:settings-gomodguard
# gomodguard:
# goplicate-end:settings-gomodguard
# goplicate-start:settings-gosimple
gosimple:
# Sxxxx checks in https://staticcheck.io/docs/configuration/options/#checks
# Default: ["*"]
checks: ['*']
# goplicate-end:settings-gosimple
# goplicate-start:settings-gosec
gosec:
# To select a subset of rules to run.
# Available rules: https://github.com/securego/gosec#available-rules
# Default: [] - means include all rules
# includes:
# To specify a set of rules to explicitly exclude.
# Available rules: https://github.com/securego/gosec#available-rules
# Default: []
# excludes:
# Exclude generated files
# Default: false
exclude-generated: true
# Filter out the issues with a lower severity than the given value.
# Valid options are: low, medium, high.
# Default: low
severity: low
# Filter out the issues with a lower confidence than the given value.
# Valid options are: low, medium, high.
# Default: low
confidence: medium
# Concurrency value.
# Default: the number of logical CPUs usable by the current process.
# concurrency: 12
# To specify the configuration of rules.
config:
# Globals are applicable to all rules.
global:
# If true, ignore #nosec in comments (and an alternative as well).
# Default: false
nosec: false
# Add an alternative comment prefix to #nosec (both will work at the same time).
# Default: ""
# "#nosec": "#my-custom-nosec"
# Define whether nosec issues are counted as finding or not.
# Default: false
show-ignored: false
# Audit mode enables addition checks that for normal code analysis might be too nosy.
# Default: false
audit: true
G101:
# Regexp pattern for variables and constants to find.
# Default: "(?i)passwd|pass|password|pwd|secret|token|pw|apiKey|bearer|cred"
# pattern: "(?i)example"
# If true, complain about all cases (even with low entropy).
# Default: false
ignore_entropy: false
# Maximum allowed entropy of the string.
# Default: "80.0"
entropy_threshold: '80.0'
# Maximum allowed value of entropy/string length.
# Is taken into account if entropy >= entropy_threshold/2.
# Default: "3.0"
per_char_threshold: '3.0'
# Calculate entropy for first N chars of the string.
# Default: "16"
truncate: '16'
# Additional functions to ignore while checking unhandled errors.
# Following functions always ignored:
# bytes.Buffer:
# - Write
# - WriteByte
# - WriteRune
# - WriteString
# fmt:
# - Print
# - Printf
# - Println
# - Fprint
# - Fprintf
# - Fprintln
# strings.Builder:
# - Write
# - WriteByte
# - WriteRune
# - WriteString
# io.PipeWriter:
# - CloseWithError
# hash.Hash:
# - Write
# os:
# - Unsetenv
# Default: {}
G104:
fmt:
- Fscanf
G111:
# Regexp pattern to find potential directory traversal.
# Default: "http\\.Dir\\(\"\\/\"\\)|http\\.Dir\\('\\/'\\)"
pattern: custom\.Dir\(\)
# Maximum allowed permissions mode for os.Mkdir and os.MkdirAll
# Default: "0750"
G301: '0750'
# Maximum allowed permissions mode for os.OpenFile and os.Chmod
# Default: "0600"
G302: '0600'
# Maximum allowed permissions mode for os.WriteFile and ioutil.WriteFile
# Default: "0666"
G306: '0666'
# goplicate-end:settings-gosec
# goplicate-start:settings-gosmopolitan
# gosmopolitan:
# goplicate-end:settings-gosmopolitan
# goplicate-start:settings-govet
govet:
# Enable analyzers by name.
# (in addition to default:
# appends, asmdecl, assign, atomic, bools, buildtag, cgocall, composites, copylocks, defers, directive, errorsas,
# framepointer, httpresponse, ifaceassert, loopclosure, lostcancel, nilfunc, printf, shift, sigchanyzer, slog,
# stdmethods, stringintconv, structtag, testinggoroutine, tests, timeformat, unmarshal, unreachable, unsafeptr,
# unusedresult
# ).
# Run `go tool vet help` to see all analyzers.
# Default: []
enable:
- appends
- asmdecl
- assign
- atomic
- atomicalign
- bools
- buildtag
- cgocall
- composites
- copylocks
- deepequalerrors
- defers
- directive
- errorsas
- fieldalignment
- findcall
- framepointer
- httpresponse
- ifaceassert
- loopclosure
- lostcancel
- nilfunc
- nilness
- printf
- reflectvaluecompare
- shadow
- shift
- sigchanyzer
- slog
- sortslice
- stdmethods
- stringintconv
- structtag
- testinggoroutine
- tests
- unmarshal
- unreachable
- unsafeptr
- unusedresult
- unusedwrite
# settings per analyzer
# run `go tool vet help` to see all analyzers
# run `go tool vet help printf` to see available settings for `printf` analyzer
# fieldalignment?
settings:
asmdecl: {}
assign: {}
atomic: {}
bools: {}
buildtag: {}
composites:
whitelist: true
copylocks: {}
# errorsas: {}
loopclosure: {}
lostcancel: {}
nilfunc: {}
printf:
funcs: true
shift: {}
stdmethods: {}
structtag: {}
unmarshal: {}
unreachable: {}
unsafeptr: {}
unusedresult:
funcs: true
stringmethods: true
# goplicate-end:settings-govet
# goplicate-start:settings-grouper
# grouper:
# goplicate-end:settings-grouper
# goplicate-start:settings-importas
importas:
# Do not allow unaliased imports of aliased packages.
# Default: false
no-unaliased: true
# Do not allow non-required aliases.
# Default: false
no-extra-aliases: false
# List of aliases
# Default: []
# alias:
# []
# # Using `servingv1` alias for `knative.dev/serving/pkg/apis/serving/v1` package.
# - pkg: knative.dev/serving/pkg/apis/serving/v1
# alias: servingv1
# # You can specify the package path by regular expression,
# # and alias by regular expression expansion syntax like below.
# # see https://github.com/julz/importas#use-regular-expression for details
# - pkg: knative.dev/serving/pkg/apis/(\w+)/(v[\w\d]+)
# alias: $1$2
# goplicate-end:settings-importas
# goplicate-start:settings-interfacebloat
interfacebloat:
# The maximum number of methods allowed for an interface.
# Default: 10
max: 10
# goplicate-end:settings-interfacebloat
# goplicate-start:settings-ireturn
# ireturn:
# goplicate-end:settings-ireturn
# goplicate-start:settings-lll
lll:
# max line length, lines longer will be reported. Default is 120. '\t' is counted as 1 character
# by default, and can be changed with the tab-width option
line-length: 120
# tab width in spaces. Default to 1.
tab-width: 1
# goplicate-end:settings-lll
# goplicate-start:settings-loggercheck
# loggercheck:
# goplicate-end:settings-loggercheck
# goplicate-start:settings-maintidx
maintidx:
# Show functions with maintainability index lower than N. A high index indicates better
# maintainability (it's kind of the opposite of complexity).
# Default: 20
under: 20
# goplicate-end:settings-maintidx
# goplicate-start:settings-makezero
makezero:
# Allow only slices initialized with a length of zero.
# Default: false
always: false
# goplicate-end:settings-makezero
# goplicate-start:settings-misspell
misspell:
# Correct spellings using locale preferences for US or UK.
# Setting locale to US will correct the British spelling of 'colour' to 'color'.
# Default is to use a neutral variety of English.
locale: US
# Default: []
# Typos to ignore.
# Should be in lower case.
# ignore-words:
# - someword
# Extra word corrections.
# `typo` and `correction` should only contain letters.
# The words are case-insensitive.
# Default: []
extra-words:
- typo: 'iff'
correction: 'if'
- typo: 'cancelation'
correction: 'cancellation'
# goplicate-end:settings-misspell
# goplicate-start:settings-musttag
# musttag:
# goplicate-end:settings-musttag
# goplicate-start:settings-nakedret
nakedret: