File tree 2 files changed +417
-68
lines changed
2 files changed +417
-68
lines changed Original file line number Diff line number Diff line change @@ -85,8 +85,20 @@ python url_checker.py --dir=docs
85
85
86
86
# Use a custom timeout for HTTP requests
87
87
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
88
94
```
89
95
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
+
90
102
## 🛠️ Helper Tools
91
103
92
104
The URL checker comes with two companion tools to help with testing and visualization:
You can’t perform that action at this time.
0 commit comments