ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Python Pep​8 Lint

by dreadatour ST2

Sublime Text 2 plugin / check Python files against some of the style conventions in PEP8

Labels linting

Details

  • 2013.10.11.06.34.32
  • github.​com
  • github.​com
  • 11 years ago
  • 3 hours ago
  • 12 years ago

Installs

  • Total 16K
  • Win 5K
  • Mac 6K
  • Linux 5K
Nov 21 Nov 20 Nov 19 Nov 18 Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12 Nov 11 Nov 10 Nov 9 Nov 8 Nov 7 Nov 6 Nov 5 Nov 4 Nov 3 Nov 2 Nov 1 Oct 31 Oct 30 Oct 29 Oct 28 Oct 27 Oct 26 Oct 25 Oct 24 Oct 23 Oct 22 Oct 21 Oct 20 Oct 19 Oct 18 Oct 17 Oct 16 Oct 15 Oct 14 Oct 13 Oct 12 Oct 11 Oct 10 Oct 9 Oct 8
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Here is new, more powerful plugin for lint your Python files: github.com/dreadatour/Flake8Lint

Flake8Lint includes pep8 lind and pyflakes lint - please, use it.

Pep8Lint

Pep8Lint is a Sublime Text 2 plugin for check Python files against some of the style conventions in PEP8.

Based on github.com/jcrocholl/pep8.

Install

Download the latest source from GitHub and copy Pep8Lint folder to your ST2 “Packages” directory.

Or clone the repository to your ST2 “Packages” directory:

git clone git://github.com/dreadatour/Pep8Lint.git

The “Packages” directory is located at:

  • OS X:

    ~/Library/Application Support/Sublime Text 2/Packages/
    
  • Linux:

    ~/.config/sublime-text-2/Packages/
    
  • Windows:

    %APPDATA%/Sublime Text 2/Packages/
    

Config

Default Pep8Lint config: “Preferences” -> “Package Settings” -> “Pep8Lint” -> “Settings - Default”

{
    // run pep8 lint on file saving
    "lint_on_save": true,
    // set maximum line length
    "max-line-length": 79,
    // select errors and warnings (e.g. ["E", "W6"])
    "select": [],
    //skip errors and warnings (e.g. ["E303", E4", "W"])
    "ignore": [],

    // Visual settings

    // display popup with errors
    "popup": true,
    // highlight errors
    "highlight": false
}

To change default settings, go to “Preferences” -> “Package Settings” -> “Pep8Lint” -> “Settings - User” and paste default config to opened file.

Features / Usage

Automatically check Python files with pep8 lint tool and show window with error list:

Error list

And move to error line/char on select.