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

chore: Use ruff formatter #18207

Merged
merged 12 commits into from
Oct 31, 2023
4 changes: 2 additions & 2 deletions .github/workflows/ci-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@ jobs:

- name: Check for syntax errors, import sort, and code style violations
run: |
ruff .
ruff check .

- name: Check formatting
run: |
black --exclude posthog/hogql/grammar --check --diff .
ruff format --exclude posthog/hogql/grammar --check --diff .

- name: Check static typing
run: |
Expand Down
Loading