From baa0e95227fc985cc6f4f28fbd088acb20a1f3fa Mon Sep 17 00:00:00 2001 From: jamesrom Date: Fri, 6 Oct 2023 21:53:10 +1100 Subject: [PATCH] Code comments for ignore.toml --- pr_agent/settings/ignore.toml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pr_agent/settings/ignore.toml b/pr_agent/settings/ignore.toml index a59b810b..429d3887 100644 --- a/pr_agent/settings/ignore.toml +++ b/pr_agent/settings/ignore.toml @@ -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/ +]