File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -136,6 +136,11 @@ The scoop package is not officially maintained by golangci team.
136
136
docker run --rm -v $( pwd) :/app -w /app golangci/golangci-lint:{.LatestVersion} golangci-lint run
137
137
```
138
138
139
+ Colored output:
140
+ ``` bash
141
+ docker run -t --rm -v $( pwd) :/app -w /app golangci/golangci-lint:{.LatestVersion} golangci-lint run
142
+ ```
143
+
139
144
Preserving caches between consecutive runs:
140
145
``` bash
141
146
docker run --rm -t -v $( pwd) :/app -w /app \
@@ -146,11 +151,6 @@ docker run --rm -t -v $(pwd):/app -w /app \
146
151
golangci/golangci-lint:{.LatestVersion} golangci-lint run
147
152
```
148
153
149
- Colored output:
150
- ``` bash
151
- docker run -t --rm -v $( pwd) :/app -w /app golangci/golangci-lint:{.LatestVersion} golangci-lint run
152
- ```
153
-
154
154
### Install from Sources
155
155
156
156
Using ` go install ` /` go get ` , "tools pattern", and ` tool ` command/directives installations aren't guaranteed to work.
You can’t perform that action at this time.
0 commit comments