Skip to content

Commit 2f146f5

Browse files
authored
Merge pull request #63 from likamrat/url_checker
url checker update
2 parents 8e62838 + b4af029 commit 2f146f5

File tree

2 files changed

+417
-68
lines changed

2 files changed

+417
-68
lines changed

tools/url-checker/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,20 @@ python url_checker.py --dir=docs
8585

8686
# Use a custom timeout for HTTP requests
8787
python url_checker.py --timeout=30
88+
89+
# Exclude specific folders from being checked
90+
python url_checker.py --exclude node_modules vendor
91+
92+
# Combine multiple options
93+
python url_checker.py --dir=src --exclude tests temp --timeout=20
8894
```
8995

96+
The `--exclude` option accepts multiple folder paths that will be skipped during URL checking. This is useful for:
97+
- Excluding third-party code and vendor directories
98+
- Skipping generated code folders
99+
- Ignoring temporary or build directories
100+
- Reducing execution time for large repositories
101+
90102
## 🛠️ Helper Tools
91103

92104
The URL checker comes with two companion tools to help with testing and visualization:

0 commit comments

Comments
 (0)