-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit * Runs black over all the project files * extends .pre-commit-config.yaml * adds .gitlint * removes .travis.yml and .gitlab-ci.yml
- Loading branch information
1 parent
4848e5e
commit 7dfcdc3
Showing
10 changed files
with
32 additions
and
103 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,2 @@ | ||
[general] | ||
ignore=body-is-missing, body-max-line-length, body-min-length |
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 |
---|---|---|
@@ -1,18 +1,27 @@ | ||
repos: | ||
- repo: local | ||
hooks: | ||
- id: black | ||
name: black | ||
language: system | ||
entry: black | ||
types: [python] | ||
- id: isort | ||
name: isort | ||
language: system | ||
entry: isort -y | ||
types: [python] | ||
- id: flake8 | ||
name: flake8 | ||
language: system | ||
entry: flake8 | ||
types: [python] | ||
- id: black | ||
stages: [commit] | ||
name: black | ||
language: system | ||
entry: black | ||
types: [python] | ||
- id: isort | ||
stages: [commit] | ||
name: isort | ||
language: system | ||
entry: isort -y | ||
types: [python] | ||
- id: flake8 | ||
stages: [commit] | ||
name: flake8 | ||
language: system | ||
entry: flake8 | ||
types: [python] | ||
- id: gitlint | ||
stages: [commit-msg] | ||
name: gitlint | ||
description: Validate commit lint | ||
entry: gitlint --msg-filename | ||
language: system |
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
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