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 f1c6e50 commit c7d71e5Copy full SHA for c7d71e5
pyproject.toml
@@ -146,7 +146,10 @@ module = "tcod._libtcod"
146
ignore_missing_imports = true
147
148
[tool.ruff]
149
-# https://beta.ruff.rs/docs/rules/
+extend-exclude = ["libtcod"] # Ignore submodule
150
+line-length = 120
151
+
152
+[tool.ruff.lint] # https://docs.astral.sh/ruff/rules/
153
select = [
154
"C90", # mccabe
155
"E", # pycodestyle
@@ -190,9 +193,6 @@ ignore = [
190
193
"D206", # indent-with-spaces
191
194
"W191", # tab-indentation
192
195
]
-extend-exclude = ["libtcod"] # Ignore submodule
-line-length = 120
196
-[tool.ruff.pydocstyle]
197
-# Use Google-style docstrings.
+[tool.ruff.lint.pydocstyle] # https://docs.astral.sh/ruff/settings/#lintpydocstyle
198
convention = "google"
0 commit comments