Skip to content

Instantly share code, notes, and snippets.

View Gridness's full-sized avatar

Ivan Gridness

View GitHub Profile
@Gridness
Gridness / pyproject.toml
Last active October 11, 2025 08:55
Ruff configuration I use in my projects
[tool.ruff]
line-length = 120
fix = true
show-fixes = true
[tool.ruff.lint]
select = ["ALL"]
ignore = ["EM", "FBT", "TRY003", "S101", "D", "FA", "T201", "INP001", "COM812", "RUF001", "RUF002", "RUF003", "N806", "B018"]
pydocstyle.convention = "google"
extend-safe-fixes = []