- Notifications
You must be signed in to change notification settings - Fork233
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
HI all, Added this to solve this in project.toml [tool.ruff]target-version ="py311"line-length = 130fix =true[tool.ruff.lint]select= ["F",# Pyflakes"E",# pycodestyle"W",# Warning"C",# Complexity (mccabe+) & comprehensions"UP",# pyupgrade"I",# isort]ignore = ["E402",# module level import not at top of file"UP006",# use-pep585-annotation"UP007",# use-pep604-annotation"E741",# Ambiguous variable name]per-file-ignores = {"__init__.py" = ["F401","F403"] }mccabe = { max-complexity = 24 }pydocstyle = { convention ="numpy" } |
BetaWas this translation helpful?Give feedback.
All reactions
Replies: 0 comments
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment