summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIrina Truong <i.chernyavska@gmail.com>2018-05-15 11:51:35 -0700
committerGitHub <noreply@github.com>2018-05-15 11:51:35 -0700
commit996a0863b91c688a7761f2684609c5663fb9f4ac (patch)
treeedd90e1054c1635dc407e6a1d0d8623bf951879e
parent0ad1a9a60c5d4d0881ec12321246b0139fcd57f5 (diff)
parent197c11f87be2999e046adcbbf12bb63ad85a89ab (diff)
Merge pull request #882 from dbcli/lint-doc
Fix the commands for fixing lint errors.
-rw-r--r--DEVELOP.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/DEVELOP.rst b/DEVELOP.rst
index 504ad3af..601c3f30 100644
--- a/DEVELOP.rst
+++ b/DEVELOP.rst
@@ -148,8 +148,8 @@ To see stdout/stderr, use the following command:
$ behave --no-capture
-PEP8 checks
------------
+PEP8 checks (lint)
+-----------------_
When you submit a PR, the changeset is checked for pep8 compliance using
`pep8radius <https://github.com/hayd/pep8radius>`_. If you see a build failing because
@@ -158,7 +158,7 @@ of these checks, install pep8radius and apply style fixes:
::
$ pip install pep8radius
- $ pep8radius --docformatter --diff # view a diff of proposed fixes
- $ pep8radius --docformatter --in-place # apply the fixes
+ $ pep8radius master --docformatter --diff # view a diff of proposed fixes
+ $ pep8radius master --docformatter --in-place # apply the fixes
Then commit and push the fixes.