-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: change mods param to use array (#162)
* fix: change mods param to use array * chore: fix line endings
- Loading branch information
Showing
3 changed files
with
2,420 additions
and
2,414 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto eol=lf |
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,45 +1,45 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.4.0 | ||
hooks: | ||
- id: check-ast | ||
- id: check-builtin-literals | ||
- id: debug-statements | ||
- id: end-of-file-fixer | ||
- id: requirements-txt-fixer | ||
- id: trailing-whitespace | ||
- repo: https://github.com/psf/black | ||
- id: check-ast | ||
- id: check-builtin-literals | ||
- id: debug-statements | ||
- id: end-of-file-fixer | ||
- id: requirements-txt-fixer | ||
- id: trailing-whitespace | ||
- repo: https://github.com/psf/black | ||
rev: 23.7.0 | ||
hooks: | ||
- id: black | ||
- repo: https://github.com/asottile/pyupgrade | ||
- id: black | ||
- repo: https://github.com/asottile/pyupgrade | ||
rev: v3.10.1 | ||
hooks: | ||
- id: pyupgrade | ||
- id: pyupgrade | ||
args: [--py37-plus, --keep-runtime-typing] | ||
- repo: https://github.com/asottile/reorder-python-imports | ||
- repo: https://github.com/asottile/reorder-python-imports | ||
rev: v3.10.0 | ||
hooks: | ||
- id: reorder-python-imports | ||
args: [--py37-plus, --add-import, 'from __future__ import annotations'] | ||
- repo: https://github.com/asottile/add-trailing-comma | ||
- id: reorder-python-imports | ||
args: [--py37-plus, --add-import, "from __future__ import annotations"] | ||
- repo: https://github.com/asottile/add-trailing-comma | ||
rev: v3.0.1 | ||
hooks: | ||
- id: add-trailing-comma | ||
- repo: https://github.com/asottile/blacken-docs | ||
- id: add-trailing-comma | ||
- repo: https://github.com/asottile/blacken-docs | ||
rev: 1.16.0 | ||
hooks: | ||
- id: blacken-docs | ||
- repo: https://github.com/hadialqattan/pycln | ||
- id: blacken-docs | ||
- repo: https://github.com/hadialqattan/pycln | ||
rev: v2.2.2 | ||
hooks: | ||
- id: pycln | ||
- repo: https://github.com/python-poetry/poetry | ||
- id: pycln | ||
- repo: https://github.com/python-poetry/poetry | ||
rev: 1.6.0 | ||
hooks: | ||
- id: poetry-check | ||
- id: poetry-check | ||
|
||
default_language_version: | ||
python: python3.9 | ||
python: python3.9 |
Oops, something went wrong.