diff options
author | 2023-10-23 11:23:16 +0100 | |
---|---|---|
committer | 2023-10-23 11:23:16 +0100 | |
commit | d6714d270a19cac26ab000a965dd667ca2bc847d (patch) | |
tree | 884b18a2dfb1d4d2ba00670c0fcd2ce008b8203a /pyproject.toml | |
parent | Bump urllib3 from 2.0.6 to 2.0.7 (diff) |
Bump ruff to latest
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index c278ae0..e2def34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ readme = "README.md" python = "3.11.*" pre-commit = "3.5.0" -ruff = "0.0.292" +ruff = "0.1.1" taskipy = "1.12.0" [tool.poetry.group.ansible.dependencies] @@ -25,10 +25,12 @@ precommit = "pre-commit install" [tool.ruff] target-version = "py311" extend-exclude = [".cache"] +select = ["ALL"] ignore = [ "ANN002", "ANN003", "ANN101", "ANN102", "ANN204", "ANN206", "ANN401", "B904", "C401", "C408", + "CPY001", "D100", "D104", "D105", "D107", "D203", "D212", "D214", "D215", "D301", "D400", "D401", "D402", "D404", "D405", "D406", "D407", "D408", "D409", "D410", "D411", "D412", "D413", "D414", "D416", "D417", "E731", @@ -38,7 +40,8 @@ ignore = [ "SIM102", "SIM108", ] line-length = 120 -select = ["ALL"] +unsafe-fixes = true +preview = true [tool.ruff.isort] order-by-type = false |