-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpre-commit-run-hook-entry.sublime-project
More file actions
43 lines (39 loc) · 1.33 KB
/
pre-commit-run-hook-entry.sublime-project
File metadata and controls
43 lines (39 loc) · 1.33 KB
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
40
41
42
43
{
"folders":
[
{
"file_exclude_patterns": [
".coverage*",
".install*",
"poetry.lock"
],
"folder_exclude_patterns": [
".*cache",
"*.egg-info",
".tox",
"dist",
],
"path": "."
}
],
"settings": {
"isorted.isort_command": ["${project_path}/.venv/bin/pre-commit-run-hook-entry", "isort"],
"isorted.isort_on_save": "true",
"LSP": {
"LSP-pylsp": {
"settings": {
"pylsp.plugins.jedi.environment": "${project_path}/.venv"
}
}
},
"python_interpreter": "${project_path}/.venv/bin/python3",
"sublack.black_command": "${project_path}/.venv/bin/pre-commit-run-black-entry",
"sublack.black_on_save": true,
"SublimeLinter.linters.flake8.executable": "${project_path}/.venv/bin/pre-commit-run-hook-entry",
"SublimeLinter.linters.flake8.args": ["--", "flake8"],
"SublimeLinter.linters.mypy.executable": "${project_path}/.venv/bin/pre-commit-run-hook-entry",
"SublimeLinter.linters.mypy.args": ["--", "mypy"],
"SublimeLinter.linters.mypy.cache-dir": false,
"SublimeLinter.linters.mypy.follow-imports": "normal"
}
}