Code comments for ignore.toml

This commit is contained in:
jamesrom
2023-10-06 21:53:10 +11:00
parent b27f57d05d
commit baa0e95227

View File

@ -1,5 +1,11 @@
[ignore]
# Ignore files and directories matching these patterns.
glob = []
regex = []
glob = [
# Ignore files and directories matching these glob patterns.
# See https://docs.python.org/3/library/glob.html
'vendor/**',
]
regex = [
# Ignore files and directories matching these regex patterns.
# See https://learnbyexample.github.io/python-regex-cheatsheet/
]