forked from dapr/python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 736 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (25 loc) · 736 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.ruff]
target-version = "py310"
line-length = 100
fix = true
extend-exclude = [".github", "dapr/proto", "ext/dapr-ext-workflow/dapr/ext/workflow/_durabletask/internal/*_pb2*"]
[tool.ruff.lint]
select = [
"I", # isort
"W", # pycodestyle warnings
"F", # pyflakes
"E", # pycodestyle errors
# TODO: Add those back progressively as we fix the issues
# "C", # flake8-comprehensions
# "B", # flake8-bugbear
# "UP", # pyupgrade
]
# TODO: Add those back progressively as we fix the issues
ignore = ["E501","E203", "E712", "E722", "E713"]
[tool.ruff.format]
quote-style = 'single'
[tool.pytest.ini_options]
markers = [
'example_dir(name): set the example directory for the dapr fixture',
]
pythonpath = ["."]