Skip to content

Commit

Permalink
chore: update dependencies, setup pre-commit hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
aitorres committed Aug 13, 2023
1 parent c92a45c commit 76977ef
Show file tree
Hide file tree
Showing 3 changed files with 496 additions and 348 deletions.
29 changes: 29 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
repos:
- repo: local
hooks:
- id: isort
name: Sort imports with isort
entry: isort
language: system
types: [python]
- id: black
name: Apply black formatting
entry: black
language: system
types: [python]
- id: flake8
name: Check style with flake8
entry: flake8
language: system
types: [python]
- id: pylint
name: Lint with Pylint
entry: pylint
language: system
types: [python]
args: [ "-rn", "-sn" ]
- id: mypy
name: Check types with mypy
entry: mypy
language: system
types: [python]
Loading

0 comments on commit 76977ef

Please sign in to comment.