Skip to content

Commit

Permalink
remove src from lint scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
SamWitty committed Oct 24, 2023
1 parent 4421a22 commit dc4c674
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions scripts/clean.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -euxo pipefail

isort --profile black src/pyciemss/ test/
black src/pyciemss/ test/
isort --profile black pyciemss/ test/
black pyciemss/ test/
8 changes: 4 additions & 4 deletions scripts/lint.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -euxo pipefail

mypy --ignore-missing-imports src/pyciemss/
isort --check --profile black --diff src/pyciemss/ test/
black --check src/pyciemss/ test/
flake8 src/pyciemss/ test/
mypy --ignore-missing-imports pyciemss/
isort --check --profile black --diff pyciemss/ test/
black --check pyciemss/ test/
flake8 pyciemss/ test/

0 comments on commit dc4c674

Please sign in to comment.