Skip to content

Commit 9292ad3

Browse files
Add globbing examples to config docs (#376)
1 parent ab16dd7 commit 9292ad3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/config.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ The following settings can be specified in the configuration file:
2323
| `runInParallel` | boolean | Run commands in parallel | `--parallel` |
2424
| `failOnNoProjects` | boolean | Fail if no projects are affected | `--fail-on-no-projects` |
2525
| `noCache` | boolean | Ignore existing cache file | `--no-cache` |
26+
| `skip` | string array | Glob patterns to exclude projects from the final list | `--skip-glob` |
27+
| `target` | string array | Glob patterns to include only matching projects in the final list | `--target-glob` |
2628

2729
## Sample Configuration File
2830

@@ -40,7 +42,9 @@ Here's an example configuration file with all available settings:
4042
"continueOnError": true,
4143
"runInParallel": false,
4244
"failOnNoProjects": false,
43-
"noCache": false
45+
"noCache": false,
46+
"skip": ["**/bin/**", "**/obj/**"],
47+
"target": ["src/**/*.csproj"]
4448
}
4549
```
4650

0 commit comments

Comments
 (0)