Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reformat with ruff, and fix linting warnings #72

Merged
merged 11 commits into from
Feb 11, 2024
23 changes: 22 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "doge"
version = "3.7.0"
version = "3.7.1"
description = "wow very terminal doge"
authors = [{ name = "Olivia Thiderman", email = "[email protected]" }]
readme = "README.md"
Expand All @@ -28,3 +28,24 @@ Homepage = "https://github.com/thiderman/doge"

[project.scripts]
doge = "doge.core:main"

[tool.ruff]
extend-exclude = ["pdbsh/rpcc_client.py"]
line-length = 88
target-version = "py39"

[tool.ruff.lint]
select = ["ALL"]
ignore = ["D107", "D203", "D213", "COM812", "T20", "S311"]

[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["D104"]

[tool.ruff.lint.flake8-annotations]
ignore-fully-untyped = true

[tool.ruff.lint.flake8-type-checking]
quote-annotations = true

[tool.ruff.format]
docstring-code-format = true
1 change: 1 addition & 0 deletions src/doge/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Copyright (C) 2013-2024 Olivia Thiderman
Loading