[MOAR] Rename wrong named packages (#659)

Co-authored-by: Francisco Liberal <francisco@arcade.dev>
This commit is contained in:
jottakka 2025-10-28 16:52:31 -03:00 committed by GitHub
parent 9d6eb10617
commit 18d3341e6e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
232 changed files with 62 additions and 17 deletions

View file

@ -1,4 +1,4 @@
files: ^.*/clickup_api/.*
files: ^.*/arcade_clickup_api/.*
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v4.4.0"

View file

@ -0,0 +1,47 @@
target-version = "py310"
line-length = 100
fix = true
exclude = [
"arcade_clickup_api/tools/__init__.py",
"arcade_clickup_api/tools/request_body_schemas.py",
]
[lint]
select = [
# flake8-2020
"YTT",
# flake8-bandit
"S",
# flake8-bugbear
"B",
# flake8-builtins
"A",
# flake8-comprehensions
"C4",
# flake8-debugger
"T10",
# flake8-simplify
"SIM",
# isort
"I",
# mccabe
"C90",
# pycodestyle
"E", "W",
# pyflakes
"F",
# pygrep-hooks
"PGH",
# pyupgrade
"UP",
# ruff
"RUF",
# tryceratops
"TRY",
]
[lint.per-file-ignores]
"**/tests/*" = ["S101"]
[format]
preview = true
skip-magic-trailing-comma = false

Some files were not shown because too many files have changed in this diff Show more