how to block a folder from being check for issues
Hey @RjManhas! You can add the folder’s glob pattern to the exclude_patterns
in your repository’s .deepsource.toml
file.
For instance, adding this block will exclude the folders called migrations
and dist
in the repository’s root recursively:
exclude_patterns = [
"migrations/**",
"dist/**"
]
You can refer to the docs here.
Also see: Glob tool that can help you generate patterns for complex scenarios.