Skip to content

Commit e14ec3d

Browse files
committed
Remove formatters task
1 parent 31e6a44 commit e14ec3d

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,9 @@ using `invoke standalone-tests`; similarly, RedisCluster tests can be run by usi
8181
Each run of tests starts and stops the various dockers required. Sometimes
8282
things get stuck, an `invoke clean` can help.
8383
84-
## Linting and Formatting
84+
## Linting
8585
86-
Call `invoke linters` to run linters without also running tests. This command will
87-
only report issues, not fix them automatically. Run `invoke formatters` to
88-
automatically format your code.
86+
Call `invoke linters` to run linters without also running tests.
8987
9088
## Documentation
9189

tasks.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,6 @@ def linters(c):
3131
run("ruff format --check --diff tests redis")
3232
run("vulture redis whitelist.py --min-confidence 80")
3333

34-
@task
35-
def formatters(c):
36-
"""Format code"""
37-
run("black --target-version py37 tests redis")
38-
run("isort tests redis")
39-
4034

4135
@task
4236
def all_tests(c):

0 commit comments

Comments
 (0)