diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-02-01 20:47:27 -0500 |
|---|---|---|
| committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-02-01 20:47:27 -0500 |
| commit | f6911706416514adfc7d591587a868cd714c9a25 (patch) | |
| tree | f56aafe4c2bf6943d40e891ed1d619218ee6e113 /.github/workflows | |
| parent | 918200c02d392c17862fff81bbf58820ed15c725 (diff) | |
| download | cmd2-git-black_config.tar.gz | |
Added black to Pipfile and black configuration to pyrpoject.tomlblack_config
Also:
- Updated flake8 and isort config in setup.cfg to be consistent with black
- Simplified how flake8 is executed by invoke task
- Simplified how flake8 is executed by GitHub Actions workflow
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/lint.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 38ce75a8..b23c6ab9 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -25,4 +25,4 @@ jobs: - name: Install python prerequisites run: pip install -U --user pip setuptools setuptools-scm flake8 - name: Lint - run: python -m flake8 . --count --ignore=E252,W503 --max-complexity=26 --max-line-length=127 --show-source --statistics ; + run: python -m flake8 . |
