Skip to content

Commit

Permalink
remove flake8 from lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
MarquessV committed May 31, 2024
1 parent 0b42d97 commit 21e7083
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ check-types:

.PHONY: check-style
check-style:
flake8 pyquil
ruff check pyquil

.PHONY: clean
clean:
Expand Down
4 changes: 0 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,6 @@ indent-width = 4
target-version = "py39"

[tool.ruff.lint]
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
# McCabe complexity (`C901`) by default.
# select = ["E4", "E7", "E9", "F"]
select = ["D", "E4", "E7", "E9", "F", "I", "B", "S", "UP", "W"]
ignore = [
"D105", # Allow missing documentation in dunder method.
Expand Down

0 comments on commit 21e7083

Please sign in to comment.