Adding upstream version 0.12.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
d887bee5ca
commit
148efc9122
69 changed files with 12923 additions and 0 deletions
28
.pre-commit-config.yaml
Normal file
28
.pre-commit-config.yaml
Normal file
|
@ -0,0 +1,28 @@
|
|||
repos:
|
||||
- repo: https://github.com/charliermarsh/ruff-pre-commit
|
||||
rev: v0.5.1
|
||||
hooks:
|
||||
- id: ruff-format
|
||||
- id: ruff
|
||||
args: [ --fix, --exit-non-zero-on-fix ]
|
||||
- repo: https://github.com/pre-commit/mirrors-mypy
|
||||
rev: v1.11.0
|
||||
hooks:
|
||||
- id: mypy
|
||||
additional_dependencies:
|
||||
- textual>=0.72.0
|
||||
- pytest
|
||||
- pyarrow-stubs
|
||||
- pandas-stubs
|
||||
- polars
|
||||
exclude: "tests/snapshot_tests/"
|
||||
args:
|
||||
- "--disallow-untyped-calls"
|
||||
- "--disallow-untyped-defs"
|
||||
- "--disallow-incomplete-defs"
|
||||
- "--strict-optional"
|
||||
- "--warn-return-any"
|
||||
- "--warn-no-return"
|
||||
- "--warn-redundant-casts"
|
||||
- "--no-warn-unused-ignores"
|
||||
- "--allow-untyped-decorators"
|
Loading…
Add table
Add a link
Reference in a new issue