-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.json
55 lines (55 loc) · 1.43 KB
/
config.json
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
44
45
46
47
48
49
50
51
52
53
54
55
[
{
"title": "General",
"type": "section",
"children": [
{
"key": "is.flother.Blake.maxLineLength",
"title": "Max line length",
"description": "Maximum number of characters allowed per line",
"type": "number",
"placeholder": 88
}
]
},
{
"title": "Flake8",
"type": "section",
"children": [
{
"key": "is.flother.Blake.flake8ExecutablePath",
"title": "Executable path",
"description": "Path to this workspace's Flake8 executable",
"type": "path",
"placeholder": "/usr/bin/env flake8"
}
]
},
{
"title": "Black",
"type": "section",
"children": [
{
"key": "is.flother.Blake.blackExecutablePath",
"title": "Executable path",
"description": "Path to this workspace's Black executable",
"type": "path",
"placeholder": "/usr/bin/env black"
},
{
"key": "is.flother.Blake.formatOnSave",
"title": "Format Python source code files on save",
"type": "boolean",
"default": false
},
{
"key": "is.flother.Blake.blackPreviewStyle",
"title": "Enable preview style",
"description": "Include experimental style changes",
"link": "https://black.readthedocs.io/en/stable/the_black_code_style/future_style.html#preview-style",
"type": "boolean",
"default": false
}
]
}
]