Skip to content

Commit 5b57aa0

Browse files
committed
Provide an example .golangci.yml file
The default [.golangci.yml](https://github.com/golangci/golangci-lint/blob/master/.golangci.example.yml) file is great, but fairly large to grok. To show how to enable the linter specifically, we here provide a trimmed down example of the file that enables JUST the example linter (and typecheck).
1 parent 8e299eb commit 5b57aa0

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.golangci.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
linters-settings:
2+
custom:
3+
example:
4+
# Path is required
5+
path: example.so
6+
# description is optional
7+
description: The description of the linter. This is optional, but shows up when running `golangci-lint linters`.
8+
# original-url is optional, and is only used for documentation purposes.
9+
original-url: github.com/golangci/example-linter
10+
linters:
11+
disable-all: true
12+
enable:
13+
- example
14+
# Typecheck is how golangci-lint reports compile errors, so should always be enabled.
15+
- typecheck

0 commit comments

Comments
 (0)