-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update dependencies, setup pre-commit hooks
- Loading branch information
Showing
3 changed files
with
496 additions
and
348 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |
Oops, something went wrong.