diff options
| author | 2024-05-28 20:00:07 +0200 | |
|---|---|---|
| committer | 2024-05-31 18:14:55 +0100 | |
| commit | 6c3865e40cbcbce4b57edbef16fa5335449e1826 (patch) | |
| tree | a3cfd3b3d728fe1fc6cf1f083c056ab4df63a2a0 /pyproject.toml | |
| parent | Swap from custom trashcan emoji to :wastebasket: (diff) | |
Add support for parsing system information
This commit adds support for parsing miscellaneous system file formats,
allowing us to further incorporate parsing for files such as
``/proc/PID/status`` for future command purposes.
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index b5653b8..b286606 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -67,6 +67,11 @@ ignore = [ "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 |