Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I don't know how to integrate it for whole project, but I have used it as an external tool to analyze an individual file.</p> <p>Note that the <a href="https://pypi.python.org/pypi/pycodestyle/" rel="nofollow noreferrer"><code>pycodestyle</code></a> package is the official replacement for and is the newer version of the <a href="https://pypi.python.org/pypi/pep8/" rel="nofollow noreferrer"><code>pep8</code></a> package. To install it, run:</p> <pre><code>$ sudo pip install --upgrade pycodestyle </code></pre> <p>Next, in Eclipse:</p> <ol> <li>Select <strong>Run-External Tools-External Tools Configurations...</strong></li> <li>Select <strong>Program</strong> root node.</li> <li>Press <strong>New launch configuration</strong> button.</li> <li>Enter <strong>Name</strong> for your launch configuration. I use <code>pycodestyle</code>.</li> <li><p>Fill following fields:</p> <p><strong>Location</strong> -- <code>${system_path:pycodestyle}</code></p> <p><strong>Working directory</strong> -- <code>${container_loc}</code></p> <p><strong>Arguments</strong> -- <code>"${resource_name}"</code> (This uses the currently active file.)</p></li> </ol> <p>Go to <strong>Common</strong> tab and confirm that the <strong>Allocate Console</strong> checkbox is checked.</p> <p>A benefit of this approach is that you can use a very up-to-date version of the package, and are not limited to the old version included with PyDev. And if you are curious about setting up <code>pylint</code> in a similar manner, see <a href="https://stackoverflow.com/a/39863131/832230">this answer</a>.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload