summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Edmund Crosley <timothy.crosley@gmail.com>2020-02-10 12:33:29 -0800
committerGitHub <noreply@github.com>2020-02-10 12:33:29 -0800
commitb277f6793462a27adf19fccec2cd00179bbdc5ba (patch)
treea3725d667e87786471c48a54b49abd2bc46c15b0
parent85342c9bd1776c5e59f3f1debaf7ade649f5d04f (diff)
parent11e2a74f5d379a68edaa064a0aeb70d8bcad9491 (diff)
downloadisort-b277f6793462a27adf19fccec2cd00179bbdc5ba.tar.gz
Merge pull request #1127 from ucodery/develop
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.