File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ The following options are currently available.
60
60
| ` enable_argument_placeholders ` | ` bool ` | ` true ` | Whether to enable function argument placeholder completions |
61
61
| ` enable_ast_check_diagnostics ` | ` bool ` | ` true ` | Whether to enable ast-check diagnostics |
62
62
| ` enable_build_on_save ` | ` bool ` | ` false ` | Whether to enable build-on-save diagnostics |
63
- | ` enable_autofix ` | ` bool ` | ` true ` | Whether to automatically fix errors on save. Currently supports adding and removing discards. |
63
+ | ` enable_autofix ` | ` bool ` | ` false ` | Whether to automatically fix errors on save. Currently supports adding and removing discards. |
64
64
| ` semantic_tokens ` | ` enum ` | ` .full ` | Set level of semantic tokens. Partial only includes information that requires semantic analysis. |
65
65
| ` enable_inlay_hints ` | ` bool ` | ` true ` | Enables inlay hint support when the client also supports it |
66
66
| ` inlay_hints_show_variable_type_hints ` | ` bool ` | ` true ` | Enable inlay hints for variable types |
Original file line number Diff line number Diff line change 27
27
"enable_autofix" : {
28
28
"description" : " Whether to automatically fix errors on save. Currently supports adding and removing discards." ,
29
29
"type" : " boolean" ,
30
- "default" : " true "
30
+ "default" : " false "
31
31
},
32
32
"semantic_tokens" : {
33
33
"description" : " Set level of semantic tokens. Partial only includes information that requires semantic analysis." ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ enable_ast_check_diagnostics: bool = true,
17
17
enable_build_on_save : bool = false ,
18
18
19
19
/// Whether to automatically fix errors on save. Currently supports adding and removing discards.
20
- enable_autofix : bool = true ,
20
+ enable_autofix : bool = false ,
21
21
22
22
/// Set level of semantic tokens. Partial only includes information that requires semantic analysis.
23
23
semantic_tokens : enum {
Original file line number Diff line number Diff line change 28
28
"name" : " enable_autofix" ,
29
29
"description" : " Whether to automatically fix errors on save. Currently supports adding and removing discards." ,
30
30
"type" : " bool" ,
31
- "default" : " true "
31
+ "default" : " false "
32
32
},
33
33
{
34
34
"name" : " semantic_tokens" ,
You can’t perform that action at this time.
0 commit comments