From e15ef33d7d3bb41eab560a1bcfd6886671bb418d Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Thu, 26 Oct 2023 12:02:41 -0400 Subject: [PATCH] . --- README.md | 2 +- pyproject.toml | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 693a66b9..27bfc9e2 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/pyproject.toml b/pyproject.toml index 6086c209..a8d975eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"] @@ -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"]