-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (56 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
58 lines (56 loc) · 1.2 KB
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
[tool.ruff.lint]
# Selected linting rules
select = [
"F", # Pyflakes
"E", # pycodestyle errors
"W", # pycodestyle warnings
# "C90", # mccabe (complexity checks disabled)
# "I", # isort (sort of imports disabled)
# "N", # pep8-naming (proper naming disabled)
# "D", # pydocstyle (now moved to lint.pydocstyle)
# "UP", # pyupgrade (Type Annotations disabled)
]
ignore = [
"E203", # whitespace before ‘,’, ‘;’, or ‘:’
"E501", # line length
"S101", # use of assert detected
]
fixable = ["ALL"]
unfixable = []
per-file-ignores = {}
exclude = [
"__pypackages__",
"_build",
".bzr",
".direnv",
".eggs",
".git-rewrite",
".git",
".github",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"*.pyc",
"buck-out",
"build",
"deps",
"dist",
"node_modules",
"other_schema",
"python-coverage",
"sample_data",
"venv",
"import_specifications/clients/authclient.py",
"import_specifications/clients/baseclient.py",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint.pydocstyle]
convention = "google"