Skip to content

Commit 23d393b

Browse files
authored
Extend ruff linter (#66)
1 parent e766c49 commit 23d393b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

pyproject.toml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,32 @@ convert = [
3939
"pint==0.24.4",
4040
]
4141

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+
4268
[tool.hatch.build]
4369
include = [
4470
"pyiron_dataclasses"

0 commit comments

Comments
 (0)