We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcf3eb9 commit 0f1650bCopy full SHA for 0f1650b
README.md
@@ -82,3 +82,14 @@ Install the dependencies (they include all **flake8** dependencies)
82
```bash
83
pip install -r requirements/linters.txt
84
```
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