forked from iterative/dvc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add flake8 extensions (iterative#4067)
* remove unnecessary generators/comprehensions * Use dict literals * remove unused variables * misc fixes ignore .iteritems, is a false +ve remove function call in default argument * Flake8 config: complexity, show source on err, show err counts * flake8: add extensions * remove flake8-string-format * Add flake8-debugger support * Add flake8-string-format extension * remove flake8-debugger It's having some problems to install on Windows in Travis
- Loading branch information
Showing
14 changed files
with
107 additions
and
97 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,63 +1,68 @@ | ||
repos: | ||
- hooks: | ||
- id: black | ||
language_version: python3 | ||
repo: https://github.com/ambv/black | ||
rev: 19.10b0 | ||
- repo: https://github.com/asottile/seed-isort-config | ||
- hooks: | ||
- id: black | ||
language_version: python3 | ||
repo: https://github.com/ambv/black | ||
rev: 19.10b0 | ||
- repo: https://github.com/asottile/seed-isort-config | ||
rev: v2.1.1 | ||
hooks: | ||
- id: seed-isort-config | ||
- hooks: | ||
- id: isort | ||
language_version: python3 | ||
repo: https://github.com/timothycrosley/isort | ||
rev: 4.3.21 | ||
- hooks: | ||
- id: flake8 | ||
language_version: python3 | ||
repo: https://gitlab.com/pycqa/flake8 | ||
rev: 3.7.9 | ||
- hooks: | ||
- args: | ||
- -i | ||
- '2' | ||
id: beautysh | ||
language_version: python3 | ||
repo: https://github.com/lovesegfault/beautysh | ||
rev: master | ||
- hooks: | ||
- args: | ||
- git-hook | ||
- pre-commit | ||
entry: dvc | ||
id: dvc-pre-commit | ||
language: system | ||
name: DVC pre-commit | ||
stages: | ||
- commit | ||
verbose: true | ||
require_serial: true | ||
- args: | ||
- git-hook | ||
- pre-push | ||
entry: dvc | ||
id: dvc-pre-push | ||
language: system | ||
name: DVC pre-push | ||
stages: | ||
- push | ||
require_serial: true | ||
- always_run: true | ||
args: | ||
- git-hook | ||
- post-checkout | ||
entry: dvc | ||
id: dvc-post-checkout | ||
language: system | ||
minimum_pre_commit_version: 2.2.0 | ||
name: DVC post-checkout | ||
stages: | ||
- post-checkout | ||
require_serial: true | ||
repo: local | ||
- id: seed-isort-config | ||
- hooks: | ||
- id: isort | ||
language_version: python3 | ||
repo: https://github.com/timothycrosley/isort | ||
rev: 4.3.21 | ||
- hooks: | ||
- id: flake8 | ||
language_version: python3 | ||
additional_dependencies: | ||
- flake8-bugbear | ||
- flake8-comprehensions | ||
- flake8-debugger | ||
- flake8-string-format | ||
repo: https://gitlab.com/pycqa/flake8 | ||
rev: 3.7.9 | ||
- hooks: | ||
- args: | ||
- -i | ||
- "2" | ||
id: beautysh | ||
language_version: python3 | ||
repo: https://github.com/lovesegfault/beautysh | ||
rev: master | ||
- hooks: | ||
- args: | ||
- git-hook | ||
- pre-commit | ||
entry: dvc | ||
id: dvc-pre-commit | ||
language: system | ||
name: DVC pre-commit | ||
stages: | ||
- commit | ||
verbose: true | ||
require_serial: true | ||
- args: | ||
- git-hook | ||
- pre-push | ||
entry: dvc | ||
id: dvc-pre-push | ||
language: system | ||
name: DVC pre-push | ||
stages: | ||
- push | ||
require_serial: true | ||
- always_run: true | ||
args: | ||
- git-hook | ||
- post-checkout | ||
entry: dvc | ||
id: dvc-post-checkout | ||
language: system | ||
minimum_pre_commit_version: 2.2.0 | ||
name: DVC post-checkout | ||
stages: | ||
- post-checkout | ||
require_serial: true | ||
repo: local |
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
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
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