repos: - repo: local hooks: - id: isort name: isort stages: [pre-commit] language: system entry: isort types: [python] - id: black name: black stages: [pre-commit] language: system entry: black types: [python] - id: flake8 name: flake8 stages: [pre-commit] language: system entry: flake8 types: [python] - id: pylint name: PyLint stages: [pre-commit] language: system entry: pylint --rcfile=.pylintrc files: \.py$ - id: sphinx-build name: Build Sphinx Doc stages: [pre-push] entry: make docs language: system files: ^(docs/.*|cars/.*)$ pass_filenames: False