1# See https://pre-commit.com for more information
2# See https://pre-commit.com/hooks.html for more hooks
3exclude: prompts/.*.txt
4repos:
5- repo: https://github.com/pre-commit/pre-commit-hooks
6 rev: v4.6.0
7 hooks:
8 - id: trailing-whitespace
9 - id: end-of-file-fixer
10 - id: check-yaml
11 - id: check-added-large-files
12- repo: https://github.com/PyCQA/flake8
13 rev: 7.0.0
14 hooks:
15 - id: flake8
16 additional_dependencies: [flake8-no-print]