Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
jnussbaum committed Apr 17, 2024
1 parent d8eb546 commit 4b5a8b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: poetry install

- name: Formatting with ruff
run: poetry run ruff format .
run: poetry run ruff format --check .

- name: Linting with ruff
run: poetry run ruff check .
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ select = [
"B023", # flake8-bugbear: function-uses-loop-variable
"FIX", # flake8-fixme: checks for FIXME, TODO, XXX, etc.
]
ignore = [
"ISC001", # flake8-implicit-str-concat: single-line-implicit-string-concatenation # incompatible with the formatter
]

[tool.ruff.lint.per-file-ignores]
"tests/*" = [
Expand Down

0 comments on commit 4b5a8b4

Please sign in to comment.