-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
56 lines (51 loc) · 1.96 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Apply to project: Place in the project root directory
# Apply globally: Remove "tool.ruff" and place in ~/.config/ruff/settings.toml
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # Pyflakes
"I", # isort
"UP", # pyupgrade
"ANN", # flake8-annotations
"B", # flake8-bugbear
"S", # flake8-bandit (security)
"SIM", # flake8-simplify
"RUF", # Ruff-specific rules
"N", # PEP8 naming
"W", # Pycodestyle warnings (style issues)
"FLY", # Flynt – f-string conversion suggestions
"SLOT", # Flake8-slots – suggests use of __slots__ where appropriate
"PERF", # Perflint
]
extend-select = [
# "D", # Pydocstyle - docstring formatting
"TID", # Flake8-tidy-imports – enforces specific import styles (e.g., no relative imports)
"BLE", # Flake8-blind-except – flags bare excepts
"TRY", # Tryceratops – try/except usage suggestions
"PIE", # Flake8-pie – Python improvement suggestions
"PTH", # flake8-use-pathlib
"C4", # flake8-comprehensions
# "FBT",# Flake8-boolean-trap – potential pitfalls with booleans
"INP", # Flake8-no-pep420 – requires __init__.py files (no implicit namespace packages)
"TC", # Flake8-type-checking – proper import of typing in type checks
"ARG", # Flake8-unused-arguments – flags unused function arguments
"LOG", # flake8-logging
"G", # Flake8-logging-format – logging format string issues
"TD", # Flake8-todos – flags TODO comments
"FIX", # Flake8-fixme – flags FIXME comments
]
ignore = [
"E501", # Line too long (because we are using the formatter)
"BLE001", # Blind exception
"COM812", # Conflicts with the formatter
"ISC001", # Conflicts with the formatter
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.basedpyright]
reportUnusedCallResult = "none"
reportAny = "none"
reportGeneralTypeIssues = "none"