forked from kai-scheduler/KAI-Scheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.golangci.yaml
More file actions
53 lines (52 loc) · 853 Bytes
/
Copy path.golangci.yaml
File metadata and controls
53 lines (52 loc) · 853 Bytes
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
# Copyright 2026 NVIDIA CORPORATION
# SPDX-License-Identifier: Apache-2.0
version: "2"
run:
timeout: 5m
tests: true
output:
formats:
text:
path: stdout
color: true
linters:
default: none
enable:
- errcheck
- goconst
- govet
- unused
settings:
lll:
line-length: 220
tab-width: 1
exclusions:
generated: lax
presets:
- comments
- common-false-positives
- legacy
- std-error-handling
rules:
- linters:
- errcheck
- goconst
- govet
path: (.+)_test.go
paths:
- generated
- third_party$
- builtin$
- examples$
severity:
default: error
formatters:
enable:
- gofmt
exclusions:
generated: lax
paths:
- generated
- third_party$
- builtin$
- examples$