aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-05-31 18:17:05 +0100
committerGravatar GitHub <[email protected]>2024-05-31 18:17:05 +0100
commitbe57dd9e4c2854a767de59edd399794d808b56df (patch)
treefa5de9582207c02c10c88cc1ca731fc23da37abf /pyproject.toml
parentSwap from custom trashcan emoji to :wastebasket: (diff)
parentAdd new System Information extension (diff)
Merge pull request #193 from python-discord/system-information-support
Add support for parsing system information
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml6
1 files changed, 6 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index b5653b8..86f769c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -62,11 +62,17 @@ ignore = [
"SIM102", "SIM108",
"PD",
"PLR0913", "PLR0917", "PLR6301",
+ "DTZ003",
# Rules suggested to be ignored when using ruff format
"COM812", "D206", "E111", "E114", "E117", "E501", "ISC001", "Q000", "Q001", "Q002", "Q003", "W191",
]
+[tool.ruff.lint.per-file-ignores]
+# McCabe is not supported on Linux systems
+"arthur/apis/systems/*.py" = ["C901", "PLR0912", "PERF401", "PLR2004"]
+
+
[tool.ruff.lint.isort]
order-by-type = false
case-sensitive = true