[MOAR] Rename wrong named packages (#659)
Co-authored-by: Francisco Liberal <francisco@arcade.dev>
This commit is contained in:
parent
9d6eb10617
commit
18d3341e6e
232 changed files with 62 additions and 17 deletions
|
|
@ -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"
|
||||
|
|
|
|||
47
toolkits/clickup_api/.ruff.toml
Normal file
47
toolkits/clickup_api/.ruff.toml
Normal 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
Loading…
Reference in a new issue