Skip to content

Instantly share code, notes, and snippets.

@harmo
Created March 27, 2014 09:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harmo/cd426db748ccda621e7d to your computer and use it in GitHub Desktop.
Save harmo/cd426db748ccda621e7d to your computer and use it in GitHub Desktop.
{
// set python interpreter (lint files for python >= 2.7):
// - 'internal' for use internal Sublime Text 2 interpreter (2.6)
// - 'auto' for search default system python interpreter (default value)
// - absolute path to python interpreter for define another one
"python_interpreter": "auto",
// turn on pyflakes error lint
"pyflakes": true,
// turn on pep8 error lint
"pep8": true,
// turn off complexity check (set number > 0 to check complexity level)
"complexity": -1,
// set desired max line length
"pep8_max_line_length": 142,
// select errors and warnings (e.g. ["E", "W6"])
"select": [],
// skip errors and warnings (e.g. ["E303", E4", "W"])
"ignore": ["E128", "E501"],
// files to ignore, for example: ["*.mako", "test*.py"]
"ignore_files": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment