Python Checker
A maintainable Python code checker for Sublime Text 3
Details
Installs
- Total 85K
- Win 47K
- Mac 16K
- Linux 21K
Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 3 | 0 | 5 | 1 | 4 | 5 | 1 | 4 | 9 | 3 | 6 | 4 | 8 | 5 | 5 | 4 | 7 | 2 | 4 | 2 | 3 | 2 | 2 | 3 | 3 | 4 | 3 | 4 | 4 | 5 | 5 | 4 | 9 | 6 | 10 | 5 | 6 | 3 | 4 | 3 | 0 | 1 | 1 | 3 | 4 | 4 |
Mac | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 3 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 2 | 1 | 5 | 2 | 1 | 0 | 2 | 0 | 1 | 2 | 4 | 2 | 1 | 1 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
Linux | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 0 | 1 | 2 | 3 | 1 | 0 | 1 | 0 | 0 | 2 | 0 | 0 | 1 | 1 | 1 | 1 | 4 | 1 | 1 | 2 | 1 | 1 | 2 | 2 | 0 | 3 | 0 | 0 | 2 | 2 | 3 | 2 | 3 | 0 | 2 | 2 | 2 | 2 |
Readme
- Source
- raw.githubusercontent.com
Python Checker
A maintainable Python code checker for Sublime Text 3
Once the plugin is installed, it will highlight common problems in your Python code.
Internally it relies on the wonderful pyflakes
and pep8
packages.
Installation
Use Package Control.
Python version
By default Python Checker will use the version of Python that came with Sublime Text 3. This currently means Python 3 and can result in problems like undefined name 'unicode'
being reported. If you want to use a different version, set the python_interpreter_path
option in your project settings:
# <project name>.sublime-project
{
"settings": {
"python_interpreter_path": "/usr/bin/python"
}
}
This is compatible with other plugins including SublimeJEDI.
PEP8 checks
Use the standard pep8
configuration files to control the behaviour including skipping some checks. An example project configration might look like this:
# setup.cfg or tox.ini
[pep8]
ignore = E501,W191
max-line-length = 120