Add support for ignoring files

Add ignore.toml, configuration for ignoring files
Add file_filter.py, for matching files against glob/regex patterns
Update relevant code to use file filter
+Tests
This commit is contained in:
jamesrom
2023-10-06 01:43:35 +11:00
parent fd8c90041c
commit e387086890
5 changed files with 104 additions and 11 deletions

View File

@ -0,0 +1,5 @@
[ignore]
# Ignore files and directories matching these patterns.
glob = []
regex = []