We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e299eb commit 5b57aa0Copy full SHA for 5b57aa0
.golangci.yml
@@ -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