summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Paige <ucodery@gmail.com>2020-02-10 11:17:27 -0800
committerJeremy Paige <ucodery@gmail.com>2020-02-10 11:17:27 -0800
commit11e2a74f5d379a68edaa064a0aeb70d8bcad9491 (patch)
tree30101e4762aad7f87e10c4171a9e3ad078ea77d2
parent44c4100b1ade58c6b32521ead76dbb5ae5731828 (diff)
downloadisort-11e2a74f5d379a68edaa064a0aeb70d8bcad9491.tar.gz
issue-1125 remove documentation examples of two character flags
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 440f18c8..24dddc5b 100644
--- a/README.md
+++ b/README.md
@@ -119,7 +119,7 @@ isort mypythonfile.py mypythonfile2.py
or recursively:
```bash
-isort -rc .
+isort
```
*which is equivalent to:*
@@ -138,7 +138,7 @@ Finally, to atomically run isort against a project, only applying
changes if they don't introduce syntax errors do:
```bash
-isort -rc --atomic .
+isort --atomic .
```
(Note: this is disabled by default as it keeps isort from being able to
@@ -609,7 +609,7 @@ formatted by running it with `-c`. Any files that contain incorrectly
sorted and/or formatted imports will be outputted to `stderr`.
```bash
-isort **/*.py -c -vb
+isort **/*.py -c -v
SUCCESS: /home/timothy/Projects/Open_Source/isort/isort_kate_plugin.py Everything Looks Good!
ERROR: /home/timothy/Projects/Open_Source/isort/isort/isort.py Imports are incorrectly sorted.