8000 Cleanup code and pyproject by methane · Pull Request #608 · msgpack/msgpack-python · GitHub
[go: up one dir, main page]

Skip to content

Cleanup code and pyproject #608

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

Merged
merged 4 commits into from
May 6, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cleanup pyproject
  • Loading branch information
methane committed May 6, 2024
commit 51ef2d979918b327e732b76383889447e6d87ba3
16 changes: 4 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,9 @@ version = {attr = "msgpack.__version__"}
[tool.ruff]
line-length = 100
target-version = "py38"
lint.ignore = []
lint.select = [
# pycodestyle
"E",
# Pyflakes
"F",
# isort
"I",
# pyupgrade
#"UP",
"E", # pycodestyle
"F", # Pyflakes
"I", # isort
#"UP", pyupgrade
]

[tool.ruff.lint.per-file-ignores]
#"msgpack/__init__.py" = ["F401", "F403"]
0