Skip to content

Commit

Permalink
Merge pull request #7194 from radarhere/pre-commit-config
Browse files Browse the repository at this point in the history
Removed files and types override
  • Loading branch information
hugovk committed Jun 2, 2023
2 parents 3ab83f2 + 3693b84 commit 3e8d9a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ repos:
hooks:
- id: black
args: [--target-version=py38]
# Only .py files, until https://github.com/psf/black/issues/402 resolved
files: \.py$
types: []

- repo: https://github.com/PyCQA/isort
rev: 5.12.0
Expand Down
8 changes: 4 additions & 4 deletions docs/Guardfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from livereload.compiler import shell
from livereload.task import Task

Task.add('*.rst', shell('make html'))
Task.add('*/*.rst', shell('make html'))
Task.add('Makefile', shell('make html'))
Task.add('conf.py', shell('make html'))
Task.add("*.rst", shell("make html"))
Task.add("*/*.rst", shell("make html"))
Task.add("Makefile", shell("make html"))
Task.add("conf.py", shell("make html"))

0 comments on commit 3e8d9a8

Please sign in to comment.