-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
41 lines (36 loc) · 897 Bytes
/
pyproject.toml
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
# Ruff configuration
# See https://doc.astral.sh/ruff/configuration
[tool.ruff]
line-length = 120
target-version = "py310"
exclude = [
".venv",
".local",
".test/.local",
".cache",
]
[tool.ruff.format]
indent-style = "space"
[tool.ruff.lint.isort]
#lines-between-types = 1
known-third-party = [
"qgis",
]
#combine-as-imports = true
#split-on-trailing-comma = true
#multi-line-output = 3
#include-trailing-comma = true
#use-parentheses = true
#ensure-newline-before-comments = true
[tool.ruff.lint.flake8-annotations]
ignore-fully-untyped = true
suppress-none-returning = true
suppress-dummy-args = true
[tool.qgis-plugin-ci]
plugin_path = "dynamic_layers"
github_organization_slug = "3liz"
project_slug = "QgisDynamicLayersPlugin"
transifex_organization = "3liz-1"
transifex_project = "dynamiclayers"
transifex_resource = "qgis_plugin"
transifex_coordinator = "etrimaille"