Switch to ruff instead of flake8. (#14633)

ruff is a flake8-compatible Python linter written in Rust.
It supports the flake8 plugins that we use and is significantly
faster in testing.
This commit is contained in:
Patrick Cloke 2022-12-21 13:05:21 -05:00 committed by GitHub
parent 5831bed450
commit 7010a3d015
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 87 additions and 116 deletions

View file

@ -1,3 +1,5 @@
from __future__ import annotations
import argparse
from typing import (
Any,