-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 724 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Dev-only tooling config for the AIDA IDA Pro plugin.
# The plugin itself is not a pip-installable package — runtime deps live in
# requirements.txt and ida-plugin.json. This file exists so contributors can
# run the formatter/linter locally.
[dependency-groups]
dev = ["ruff>=0.8.0"]
[tool.ruff]
line-length = 100
target-version = "py39"
extend-exclude = ["__pycache__"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"W", # pycodestyle warnings
"I", # isort
"B", # flake8-bugbear
]
ignore = [
"E501", # line length handled by the formatter
"B008", # function calls in argument defaults (common in Qt code)
]
[tool.ruff.format]
quote-style = "preserve"