-
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.
* update versions * update * * only lint from pre-commit * update tox.ini * fix tox.ini * woke up externals
- Loading branch information
Showing
11 changed files
with
1,280 additions
and
1,049 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
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,30 +1,28 @@ | ||
fail_fast: false | ||
exclude: | | ||
(?x)^( | ||
tests/data/.* | ||
)$ | ||
repos: | ||
- repo: local | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-yaml | ||
- id: trailing-whitespace | ||
- repo: https://github.com/astral-sh/ruff-pre-commit | ||
# Ruff version. | ||
rev: v0.1.14 | ||
hooks: | ||
- id: system | ||
name: isort | ||
entry: poetry run isort src/ | ||
language: system | ||
pass_filenames: false | ||
# Run the linter. | ||
- id: ruff | ||
args: [--fix] | ||
# Run the formatter. | ||
- id: ruff-format | ||
- repo: local | ||
hooks: | ||
- id: pyupgrade | ||
- id: pyupgrade | ||
name: pyupgrade | ||
entry: poetry run pyupgrade --py36-plus | ||
entry: poetry run pyupgrade --py38-plus | ||
language: python | ||
types: [python] | ||
pass_filenames: true | ||
- repo: local | ||
hooks: | ||
- id: system | ||
name: Black | ||
entry: poetry run black src/ | ||
language: system | ||
pass_filenames: false | ||
- repo: local | ||
hooks: | ||
- id: system | ||
name: flake8 | ||
entry: poetry run flake8 src/ | ||
language: system | ||
pass_filenames: false |
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 |
---|---|---|
|
@@ -43,7 +43,7 @@ ctl: | |
- Ctl/tmplvars.yaml | ||
ignore: | ||
- \.git/ | ||
|
||
# command to remove temporary files | ||
|
||
- name: clean | ||
|
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.