diff options
author | Erik Johnston <erik@matrix.org> | 2023-01-12 10:52:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-12 10:52:07 +0000 |
commit | b50c008453001aee8dd7dbd6f36ec32039e6ce76 (patch) | |
tree | 504eda353912088f59a27f80d0c7a2f2217b4725 /pyproject.toml | |
parent | Add `set_displayname` to the module API (#14629) (diff) | |
download | synapse-b50c008453001aee8dd7dbd6f36ec32039e6ce76.tar.xz |
Re-enable some linting (#14821)
* Re-enable some linting * Newsfile * Remove comment
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/pyproject.toml b/pyproject.toml index 740d33066e..10d50ddb45 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,11 +48,6 @@ line-length = 88 # E731: do not assign a lambda expression, use a def # E501: Line too long (black enforces this for us) # -# See https://github.com/charliermarsh/ruff/#pyflakes -# F401: unused import -# F811: Redefinition of unused -# F821: Undefined name -# # flake8-bugbear compatible checks. Its error codes are described at # https://github.com/charliermarsh/ruff/#flake8-bugbear # B019: Use of functools.lru_cache or functools.cache on methods can lead to memory leaks @@ -64,9 +59,6 @@ ignore = [ "B024", "E501", "E731", - "F401", - "F811", - "F821", ] select = [ # pycodestyle checks. |