forked from JulianEberius/SublimePythonIDE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSublimePython.sublime-settings
34 lines (31 loc) · 1.14 KB
/
SublimePython.sublime-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
// leave empty string to use default system interpreter
// e.g. /usr/local/bin/python
// or "C:\\Python27\\python.exe"
// if you use virtualenvs, then set the absolute path to the virtualenv's
// python in your project settings (Project->Edit Project) as in:
//
// {
// "folders": ...
// "settings":
// {
// "python_interpreter": "/Users/USER/.virtualenvs/PROJECT/bin/python"
// }
// }
"python_interpreter": "",
// make python_open_documentation command output in a view or in the output
// panel if false
"open_pydoc_in_view": false,
// when a doc view is created it will be placed in the active view group
// if false and only one group exist then a new group will be created
"create_view_in_same_group": false,
// Linter settings
"python_linting": true,
"python_linter_mark_style": "outline", // "none" or "outline"
"python_linter_gutter_marks": true,
"python_linter_gutter_marks_theme": "simple", // see folder gutter_mark_themes
"pep8": true,
"pep8_ignore": [],
"pep8_max_line_length": 80,
"pyflakes_ignore": []
}