-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathideenergy.sublime-project
39 lines (33 loc) · 1.05 KB
/
ideenergy.sublime-project
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
35
36
37
38
39
{
"folders":
[
{
"file_exclude_patterns": [
"*.pyc",
],
"folder_exclude_patterns": [
"*.egg-info",
".mypy_cache",
".venv",
"__pycache__",
"dist",
],
"follow_symlinks": true,
"path": ".",
}
],
/*
"settings": {
"python_interpreter": "${project_path}/.venv/bin/python",
"sublack.black_command": "${project_path}/.venv/bin/black",
"sublack.black_on_save": true,
"isort.sort_on_save": true,
"SublimeLinter.linters.flake8.executable": "${project_path}/.venv/bin/flake8",
"SublimeLinter.linters.flake8.disable": true,
"SublimeLinter.linters.mypy.executable": "${project_path}/.venv/bin/mypy",
"SublimeLinter.linters.mypy.disable": false,
"SublimeLinter.linters.pycodestyle.executable": "${project_path}/.venv/bin/pycodestyle",
"SublimeLinter.linters.pycodestyle.disable": true,
}
*/
}