I have my python project. I'm trying to setup pre-commit checks using pre-commit. I want to exclude some folders and some files (by pattern) from the analysis. The `exclude tag in config file only supports string not an array.
E.g. in following project structure, I want to exclude poc
and tests
folders and conftest.py
file.
root
├── poetry.lock
├── pyproject.toml
├── resources
├── src
│ ├── mylib
│ │ └── functions.py
│ └── poc
│ └── some_junk.py
├── conftest.py
└── tests
├── entry_point.py
└── test_functions.py
I can exclude a folder or file using exclude tag, e.g. to exclude poc
I do this:
exclude: poc
repos:
- repo: https://github.com/pycqa/isort
rev: 5.11.4
hooks:
- id: isort
- id: ...
... but how do I exclude multiple files and folders?