Skip to content

Commit 0f1650b

Browse files
refactor: Update README.md.
1 parent bcf3eb9 commit 0f1650b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,14 @@ Install the dependencies (they include all **flake8** dependencies)
8282
```bash
8383
pip install -r requirements/linters.txt
8484
```
85+
86+
## Usage
87+
88+
```bash
89+
# Use to view PEP8 errors.
90+
flake8 . --count --show-source --statistics
91+
# Use to format code.
92+
black . --verbose
93+
# Use to format the order of imports.
94+
isort . --verbose
95+
```

0 commit comments

Comments
 (0)