We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e766c49 commit 23d393bCopy full SHA for 23d393b
pyproject.toml
@@ -39,6 +39,32 @@ convert = [
39
"pint==0.24.4",
40
]
41
42
+[tool.ruff]
43
+exclude = [".ci_support", "tests", "_version.py"]
44
+
45
+[tool.ruff.lint]
46
+select = [
47
+ # pycodestyle
48
+ "E",
49
+ # Pyflakes
50
+ "F",
51
+ # pyupgrade
52
+ "UP",
53
+ # flake8-bugbear
54
+ "B",
55
+ # flake8-simplify
56
+ "SIM",
57
+ # isort
58
+ "I",
59
+ # flake8-comprehensions
60
+ "C4",
61
+ # eradicate
62
+ "ERA",
63
+ # pylint
64
+ "PL",
65
+]
66
+ignore = []
67
68
[tool.hatch.build]
69
include = [
70
"pyiron_dataclasses"
0 commit comments