Files
pr-agent/pr_agent/settings/ignore.toml

13 lines
344 B
TOML
Raw Normal View History

[ignore]
2023-10-06 21:53:10 +11:00
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/
# for example: regex = ['.*\.toml$']
2023-10-06 21:53:10 +11:00
]