8000 Switch from flake8 and black to ruff, upgrade dependencies by bbayles · Pull Request #62 · ada-url/ada-python · GitHub
[go: up one dir, main page]

Skip to content

Switch from flake8 and black to ruff, upgrade dependencies #62

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 5 commits into from
Mar 13, 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
Update Makefile
  • Loading branch information
bbayles committed Mar 12, 2024
commit 6dde241353831f16f19c81c9567e0512d7a5145e
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ requirements:

.PHONY: check
check:
black --check .
ruff .
ruff check .

.PHONY: format
format:
black .
ruff format .

.PHONY: coverage
coverage:
Expand Down
0