From: Anthony Sottile Date: Mon, 9 Jul 2018 20:42:38 +0000 (-0700) Subject: pre-commit: use exclusion instead of ever-growing regex (#382) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/c50b10749369b0175994c4da0c78876c71ae75dc pre-commit: use exclusion instead of ever-growing regex (#382) --- 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