-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 666 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 666 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
[build-system]
requires = ["setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.ruff]
lint.select = [
"E", "W", # pycodestyle
"F", # Pyflakes
"N", # pep8-naming
"I", # isort
"YTT", # flake8-2020
"C4", # flake8-comprehensions
"ISC", # flake8-implicit-str-concat
"G", # flake8-logging-format
"ICN", # flake8-import-conventions
"PT", # flake8-pytest-style
"TID", # flake8-tidy-imports
"DTZ", # flake8-datetimez
"PIE", # flake8-pie
"COM", # flake8-commas
"PLC", # Pylint Convention
"PLE", # Pylint Error
"PLW", # Pylint Warning
]
lint.ignore = ["PT001", "PT016", "PT011"]
line-length = 100
[tool.black]
line-length = 100