We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a034220 + 6e3b7a8 commit 8113b27Copy full SHA for 8113b27
1 file changed
linter.py
@@ -2,7 +2,7 @@
2
3
4
class GolangCILint(Linter):
5
- cmd = 'golangci-lint run --fast --out-format tab ${file_path}'
+ cmd = 'golangci-lint run ${args} --out-format tab ${file_path}'
6
tempfile_suffix = '-'
7
# Column reporting is optional and not provided by all linters.
8
# Issues reported by the 'typecheck' linter are treated as errors,
@@ -12,5 +12,6 @@ class GolangCILint(Linter):
12
r'(?P<code>(?P<error>typecheck)|\w+)\s+(?P<message>.+)$'
13
default_type = WARNING
14
defaults = {
15
- 'selector': 'source.go'
+ 'selector': 'source.go',
16
+ 'args': '--fast'
17
}
0 commit comments