Skip to content

Commit

Permalink
Adds flake8 to pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bpiwowar committed May 31, 2024
1 parent b2c5875 commit 4f8df06
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 22.3.0
hooks:
- id: black
- hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
- hooks:
- exclude: ^src/experimaestro/server/data
id: black
repo: https://github.com/psf/black
rev: 23.1.0
- hooks:
- additional_dependencies:
- flake8-print
- flake8-fixme
id: flake8
repo: https://github.com/pycqa/flake8
rev: 6.0.0

0 comments on commit 4f8df06

Please sign in to comment.