-
Notifications
You must be signed in to change notification settings - Fork 657
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
KevinMusgrave
committed
Aug 13, 2022
1 parent
a5819d1
commit a8cb8fa
Showing
2 changed files
with
4 additions
and
4 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
black . --exclude examples | ||
isort . --profile black --skip-glob examples | ||
black src tests | ||
isort src tests --profile black | ||
nbqa black examples | ||
nbqa isort examples --profile black |
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,4 +1,4 @@ | ||
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | ||
flake8 . --count --select=F401 --statistics --per-file-ignores="__init__.py:F401" | ||
flake8 src tests --count --select=E9,F63,F7,F82 --show-source --statistics | ||
flake8 src tests --count --select=F401 --statistics --per-file-ignores="__init__.py:F401" | ||
nbqa flake8 examples --count --select=E9,F63,F7,F82 --show-source --statistics | ||
nbqa flake8 examples --count --select=F401 --statistics --per-file-ignores="__init__.py:F401" |