This repository has been archived by the owner on Feb 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
sublack.sublime-settings
62 lines (43 loc) · 1.68 KB
/
sublack.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
// ########################
// Black specific options #
// ########################
// line length
// uses black default, if not modified
"black_line_length": null,
// If --fast given, skip temporary sanity checks.
"black_fast": false,
// prevent black from changing single quote to double quotes
// default is false
// add --black_skip_string_normalization
"black_skip_string_normalization": false,
// force py36 syntax mode
"black_py36": null,
// specify python variant version
"black_target_version": null,
// ##########################
// Sublack specific options #
// ##########################
// full path and command to run black
"black_command": "black",
// run black before saving document
"black_on_save": false,
// set debug mode. default is info.
// choices : debug > info > error
"black_log": "info",
// default encoding for never saved file, if not specified un first 2 lines (pep 263):
// default is "utf-8". Change this only if you want override default behaviour.
"black_default_encoding": "utf-8",
// use blackd server instead of black
"black_use_blackd": false,
// blackd server host
"black_blackd_host": "localhost",
// blackd server port, default is like black, should be string
"black_blackd_port": "45484",
// Start blackdserver on start. shuts down at sublimetext exit.
"black_blackd_autostart": false,
// Use pre-commit if possible
"black_use_precommit": false,
// Disable formatll command
"black_confirm_formatall": true
}