-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
58 lines (49 loc) · 1.21 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# SPDX-FileCopyrightText: 2023 Daniel Brötzmann <[email protected]>
#
# SPDX-License-Identifier: CC0-1.0
[project]
name = "XMPP Providers Website"
[project.optional-dependencies]
dev = [
"black==23.12.1",
"isort==5.13.2",
"ruff==0.1.14",
"pyright==1.1.348",
]
[tool.isort]
force_alphabetical_sort_within_sections = true
force_single_line = true
group_by_package = true
known_typing = ["typing"]
sections = [
"FUTURE",
"TYPING",
"STDLIB",
"THIRDPARTY",
"FIRSTPARTY",
"LOCALFOLDER"
]
skip_gitignore = true
[tool.ruff]
select = ["ALL"]
ignore = [
"ANN101", # missing-type-self
"COM812", # missing-trailing-comma
"D100", # undocumented-public-module
"D104", # undocumented-public-package
"D203", # one-blank-line-before-class
"D205", # blank-line-after-summary
"D212", # multi-line-summary-first-line
"D213", # multi-line-summary-second-line
"D400", # ends-in-period
"D401", # non-imperative-mood
"D404", # docstring-starts-with-this
"D415", # ends-in-punctuation
"I001", # unsorted-imports
"PTH123", # builtin-open
]
target-version = "py311"
[tool.ruff.flake8-quotes]
inline-quotes = "double"
docstring-quotes = "double"
multiline-quotes = "double"