mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 06:42:02 +00:00
27 lines
540 B
TOML
27 lines
540 B
TOML
[tool.black]
|
|
line-length = 120
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
select = ["E", "F", "W", "I", "C", "RET", "ANN", "UP"]
|
|
target-version = "py310"
|
|
|
|
[tool.poetry]
|
|
name = "scripts"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Charles Marsh <charlie.r.marsh@gmail.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.10,<3.11"
|
|
autoflake = "^1.4"
|
|
flake8 = "^5.0.4"
|
|
pycodestyle = "^2.9.1"
|
|
pyflakes = "^2.5.0"
|
|
pylint = "^2.15.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|