@@ -18,7 +18,7 @@ Features
18
18
* Parseable output: Jump to error location in your editor.
19
19
20
20
* Small: Just one Python file, requires only stdlib. You can use just
21
- the pycodestyle.py file for this purpose.
21
+ the `` pycodestyle.py `` file for this purpose.
22
22
23
23
* Comes with a comprehensive test suite.
24
24
@@ -55,7 +55,7 @@ the ``pycodestyle`` library:
55
55
Installation
56
56
------------
57
57
58
- You can install, upgrade, uninstall pycodestyle.py with these commands::
58
+ You can install, upgrade, uninstall `` pycodestyle.py `` with these commands::
59
59
60
60
$ pip install pycodestyle
61
61
$ pip install --upgrade pycodestyle
@@ -77,7 +77,7 @@ Example usage and output
77
77
optparse.py:472:29: E221 multiple spaces before operator
78
78
optparse.py:544:21: W601 .has_key() is deprecated, use 'in'
79
79
80
- You can also make pycodestyle.py show the source code for each error, and
80
+ You can also make `` pycodestyle.py `` show the source code for each error, and
81
81
even the relevant text from PEP 8::
82
82
83
83
$ pycodestyle --show-source --show-pep8 testsuite/E40.py
@@ -106,8 +106,8 @@ Or you can display how often each error was found::
106
106
612 W601 .has_key() is deprecated, use 'in'
107
107
1188 W602 deprecated form of raising exception
108
108
109
- You can also make pycodestyle.py show the error text in different formats by
110
- using --format having options default/pylint/custom::
109
+ You can also make `` pycodestyle.py `` show the error text in different formats by
110
+ using `` --format `` having options default/pylint/custom::
111
111
112
112
$ pycodestyle testsuite/E40.py --format=default
113
113
testsuite/E40.py:2:10: E401 multiple imports on one line
0 commit comments