Skip to content

Commit

Permalink
Vendor dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed Mar 13, 2020
1 parent 0216ed8 commit f4985db
Show file tree
Hide file tree
Showing 226 changed files with 47,341 additions and 325 deletions.
2 changes: 2 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ exclude =
.pytest_cache
.vscode
.github
poetry_core/_vendor/
poetry_core/utils/_compat.py
poetry_core/utils/_typing.py
tests/fixtures/
tests/masonry/fixtures/
26 changes: 23 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,44 @@ repos:
rev: stable
hooks:
- id: black
exclude: ^poetry_core/_vendor

- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.8
hooks:
- id: flake8
exclude: |
(?x)(
^poetry_core/utils/_typing.py$
| ^poetry_core/utils/_compat.py$
| ^poetry_core/_vendor
)
- repo: https://github.com/pre-commit/mirrors-isort
rev: v4.3.21
hooks:
- id: isort
additional_dependencies: [toml]
exclude: ^.*/?setup\.py$
exclude: |
(?x)(
^.*/?setup\.py$
| ^poetry_core/_vendor
)
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
- id: trailing-whitespace
exclude: ^tests/.*/fixtures/.*
exclude: |
(?x)(
^tests/.*/fixtures/.*
| ^poetry_core/_vendor
)
- id: end-of-file-fixer
exclude: ^tests/.*/fixtures/.*
exclude: |
(?x)(
^tests/.*/fixtures/.*
| ^poetry_core/_vendor
)
- id: debug-statements
exclude: ^poetry_core/_vendor
Loading

0 comments on commit f4985db

Please sign in to comment.