forked from grizz/pymdgen
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* define readme in pyproject.toml * fix deprecation warning * add pre-commit
- Loading branch information
Showing
4 changed files
with
579 additions
and
445 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,24 @@ | ||
fail_fast: true | ||
repos: | ||
- repo: local | ||
hooks: | ||
- id: system | ||
name: isort | ||
entry: poetry run isort . | ||
language: system | ||
pass_filenames: false | ||
- repo: local | ||
hooks: | ||
- id: pyupgrade | ||
name: pyupgrade | ||
entry: poetry run pyupgrade --py36-plus | ||
language: python | ||
types: [python] | ||
pass_filenames: true | ||
- repo: local | ||
hooks: | ||
- id: system | ||
name: Black | ||
entry: poetry run black . | ||
language: system | ||
pass_filenames: false |
Oops, something went wrong.