-
-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 869 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 869 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
31
[project]
name = "python-social-auth-docs"
requires-python = ">=3.11"
version = "2025.0"
[tool.ruff.lint]
ignore = [
"ANN", # TODO: missing type annotations
"COM", # CONFIG: No trailing commas
"D", # TODO: missing documentation
"D203", # CONFIG: incompatible with D211
"D212", # CONFIG: incompatible with D213
"E501", # WONTFIX: we accept long strings (rest is formatted by ruff)
"N", # TODO: wrong naming conventions
"PTH", # TODO: not using pathlib
"S603", # CONFIG: subprocess is being used
"S607", # CONFIG: subprocess executes system tools
"T201", # CONFIG: print is used
'ISC001' # CONFIG: formatter
]
select = ["ALL"]
[tool.ruff.lint.per-file-ignores]
"docs/conf.py" = ["INP001"]
[tool.tomlsort]
ignore_case = true
sort_inline_arrays = true
sort_inline_tables = true
sort_table_keys = true
spaces_before_inline_comment = 2