Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson committed Oct 26, 2023
1 parent c080aba commit e15ef33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ We use Amazon DynamoDB for data storage. To deploy locally, follow [these instru

### Initialize development environment

Code style is managed by [flake8](https://github.com/PyCQA/flake8) and checked prior to commit.
Code style is managed by [Ruff](https://docs.astral.sh/ruff/) and checked prior to commit.

We use [pre-commit](https://pre-commit.com/#usage) to run conformance tests.

Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ build-backend = "setuptools.build_meta:__legacy__"
# pycodestyle (E, W)
# Pyflakes (F)
# flake8-annotations (ANN)
# flake8-quotes (Q)
# pydocstyle (D)
# pep8-naming (N)
# isort (I)
select = ["E", "W", "F", "ANN", "Q", "D", "N", "I"]
select = ["E", "W", "F", "ANN", "D", "N", "I"]

fixable = ["I", "F401"]

Expand All @@ -23,7 +22,6 @@ fixable = ["I", "F401"]
# ANN101 - missing-type-self
# ANN003 - missing-type-kwargs
# E501 - line-too-long
# Q - flake8-quotes*
# W191 - tab-indentation*
# *ignored for compatibility with formatter
ignore = ["D203", "D205", "D206", "D213", "D400", "D415", "ANN101", "ANN003", "E501", "Q", "W191"]
Expand Down

0 comments on commit e15ef33

Please sign in to comment.