We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afd670b commit 13f7f68Copy full SHA for 13f7f68
docs/src/docs/welcome/quick-start.mdx
@@ -14,13 +14,16 @@ It's an equivalent of executing:
14
golangci-lint run ./...
15
```
16
17
-You can choose which directories and files to analyze:
+You can choose which directories or files to analyze:
18
19
```sh
20
-golangci-lint run dir1 dir2/... dir3/file1.go
+golangci-lint run dir1 dir2/...
21
+golangci-lint run file1.go
22
23
-Directories are NOT analyzed recursively. To analyze them recursively append `/...` to their path.
24
+Directories are NOT analyzed recursively.
25
+To analyze them recursively append `/...` to their path.
26
+It's not possible to mix files and packages/directories, and files must come from the same package.
27
28
GolangCI-Lint can be used with zero configuration. By default, the following linters are enabled:
29
0 commit comments