Skip to content

Commit

Permalink
Add pre-commit config w/ new dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
greysonlalonde committed Dec 27, 2023
1 parent 03140d3 commit 6716a78
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
repos:

- repo: https://github.com/psf/black-pre-commit-mirror
rev: 23.12.1
hooks:
- id: black
language_version: python3.11
files: \.(py)$

- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
name: isort (python)
args: ["--profile", "black", "--filter-files"]

- repo: https://github.com/PyCQA/autoflake
rev: v2.2.1
hooks:
- id: autoflake

0 comments on commit 6716a78

Please sign in to comment.