-
Notifications
You must be signed in to change notification settings - Fork 0
/
Flake8Lint.sublime-settings
34 lines (27 loc) · 1020 Bytes
/
Flake8Lint.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
{
// run flake8 lint on file saving
"lint_on_save": false,
// popup a dialog of detected conditions?
"popup": true,
// highlight detected conditions?
"highlight": true,
// 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": 79,
// select errors and warnings (e.g. ["E", "W6"])
"select": [],
// skip errors and warnings (e.g. ["E303", E4", "W"])
"ignore": ["E301"],
// files to ignore, for example: ["*.mako", "test*.py"]
"ignore_files": []
}