forked from AliceO2Group/Run3AnalysisValidation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (28 loc) · 708 Bytes
/
pyproject.toml
File metadata and controls
30 lines (28 loc) · 708 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
29
30
[tool.pyright]
reportMissingImports = false
reportUnboundVariable = false
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [ # defaults: ["E4", "E7", "E9", "F"], see https://docs.astral.sh/ruff/rules/
"A", # flake8-builtins
"ARG", # flake8-unused-arguments
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"E", # pycodestyle Error
"F", # Pyflakes
"FLY", # flynt
"FURB", # refurb
"I", # isort
"NPY", # NumPy-specific rules
"PD", # pandas-vet
"PL", # Pylint
"RUF", # Ruff-specific rules
"SIM", # flake8-simplify
"UP", # pyupgrade
"W", # pycodestyle Warning
]
ignore = [
"PD901", # pandas-df-variable-name
"PLR09", # too-many-...
]