Skip to content

Commit

Permalink
fix(pre-commit): fix regexes in config
Browse files Browse the repository at this point in the history
  • Loading branch information
TheKevJames committed Feb 24, 2019
1 parent 9e5761d commit d9e27fe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repos:
- id: debug-statements
- id: detect-private-key
- id: end-of-file-fixer
exclude: example/*
exclude: example/.*
- id: file-contents-sorter
files: .dockerignore .gitignore
- id: mixed-line-ending
Expand All @@ -38,7 +38,7 @@ repos:
- -d missing-docstring
- -d too-few-public-methods
- -d useless-object-inheritance
exclude: example/*
exclude: example/.*
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.1.6
hooks:
Expand All @@ -48,17 +48,17 @@ repos:
hooks:
- id: reorder-python-imports
args: [--py26-plus]
files: coveralls/*
files: coveralls/.*
- repo: https://github.com/asottile/yesqa
rev: v0.0.9
hooks:
- id: yesqa
files: coveralls/*
files: coveralls/.*
- repo: https://github.com/pre-commit/mirrors-autopep8
rev: v1.4.3
hooks:
- id: autopep8
files: coveralls/*
files: coveralls/.*
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.2.0
hooks:
Expand Down

0 comments on commit d9e27fe

Please sign in to comment.