From c50b10749369b0175994c4da0c78876c71ae75dc Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Mon, 9 Jul 2018 13:42:38 -0700 Subject: [PATCH] pre-commit: use exclusion instead of ever-growing regex (#382) --- .pre-commit-config.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 99fb823..9fb00c5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,19 +1,22 @@ # Note: don't use this config for your own repositories. Instead, see # "Version control integration" in README.md. +exclude: ^(blib2to3/|profiling/|tests/data/) +repos: - repo: local hooks: - id: black name: black language: system entry: python3 -m black - files: ^(black|setup|tests/test_black|docs/conf)\.py$ + types: [python] - id: flake8 name: flake8 language: system entry: flake8 - files: ^(black|setup|tests/test_black)\.py$ + types: [python] - id: mypy name: mypy language: system entry: mypy - files: ^(black|setup|tests/test_black)\.py$ + types: [python] + exclude: ^docs/conf.py -- 2.39.2