1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- [build-system]
- requires = ["setuptools", "wheel"]
- build-backend = "setuptools.build_meta"
- [tool.ruff]
- select = ["E", "F"]
- ignore = []
- fixable = ["A", "B", "C", "D", "E", "F", "G", "I", "N", "Q", "S", "T", "W", "ANN", "ARG", "BLE", "COM", "DJ", "DTZ", "EM", "ERA", "EXE", "FBT", "ICN", "INP", "ISC", "NPY", "PD", "PGH", "PIE", "PL", "PT", "PTH", "PYI", "RET", "RSE", "RUF", "SIM", "SLF", "TCH", "TID", "TRY", "UP", "YTT"]
- unfixable = []
- exclude = [
- ".bzr",
- ".direnv",
- ".eggs",
- ".git",
- ".git-rewrite",
- ".hg",
- ".mypy_cache",
- ".nox",
- ".pants.d",
- ".pytype",
- ".ruff_cache",
- ".svn",
- ".tox",
- ".venv",
- "__pypackages__",
- "_build",
- "buck-out",
- "build",
- "dist",
- "node_modules",
- "venv",
- ]
- line-length = 88
- dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
- target-version = "py38"
- [tool.ruff.mccabe]
- max-complexity = 10
- [tool.black]
- line-length = 88
- target-version = ["py38", "py39", "py310", "py311"]
- include = '\.pyi?$'
- exclude = '''
- /(
- \.eggs
- | \.git
- | \.hg
- | \.mypy_cache
- | \.nox
- | \.pants.d
- | \.pytype
- | \.ruff_cache
- | \.svn
- | \.tox
- | \.venv
- | __pypackages__
- | _build
- | buck-out
- | build
- | dist
- | node_modules
- | venv
- )/
- '''
- [tool.black.format]
- color = true
|