Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKorzh committed Aug 29, 2024
1 parent 6d9daa8 commit 6f5eb88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Ruff Code Check and Format
name: Ruff Code Check

on: [push, pull_request]

Expand All @@ -18,10 +18,6 @@ jobs:
run: |
pip install ruff
- name: Format Code with Ruff
run: |
ruff format .
- name: Run Ruff Check
run: |
ruff check .
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ ignore = ["E203", "E501", "F401", "C408", "F811", "N807"]

[tool.ruff.format]
indent-style = "space"
indent-width = 4
line-ending = "auto"
quote-style = "double"
skip-magic-trailing-comma = false
docstring-code-line-length = 88
docstring-code-line-length = 88
docstring-style = "google"

0 comments on commit 6f5eb88

Please sign in to comment.