Skip to content

Commit

Permalink
github: lint: Exclude external source file directory from linting
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwood committed May 25, 2021
1 parent 8cccd85 commit fc9cf57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ jobs:
- run: pip install -r requirements_dev.txt

- run: flake8
# To avoid datagetter errors, we must specifically exclude src/datagetter
- run: black --check --exclude "/(\.eggs|\.git|_cache|src\/datagetter)/" ./
# To local srcs, we must specifically exclude src
- run: black --check --exclude "/(\.eggs|\.git|_cache|src)/" ./

0 comments on commit fc9cf57

Please sign in to comment.