We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f92c44 commit 09846c7Copy full SHA for 09846c7
1 file changed
pyproject.toml
@@ -105,18 +105,18 @@ exclude = [
105
"tests/",
106
"notebooks/"
107
]
108
-select = [
+lint.select = [
109
"E", # pycodestyle errors
110
"W", # pycodestyle warnings
111
"F", # pyflakes
112
"I", # isort
113
"C", # flake8-comprehensions
114
"B", # flake8-bugbear
115
116
-ignore = []
+lint.ignore = []
117
118
-[tool.ruff.isort]
+[tool.lint.isort]
119
known-first-party = ["iglu_python"]
120
121
-[tool.ruff.per-file-ignores]
+[tool.lint.per-file-ignores]
122
"tests/*" = ["E501"] # Allow long lines in tests
0 commit comments