You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: schema.json
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -27,11 +27,6 @@
27
27
},
28
28
"default": []
29
29
},
30
-
"enable_autofix": {
31
-
"description": "Whether to automatically fix errors on save. Currently supports adding and removing discards.",
32
-
"type": "boolean",
33
-
"default": false
34
-
},
35
30
"semantic_tokens": {
36
31
"description": "Set level of semantic tokens. `partial` only includes information that requires semantic analysis.",
37
32
"type": "string",
@@ -77,6 +72,11 @@
77
72
"type": "boolean",
78
73
"default": false
79
74
},
75
+
"force_autofix": {
76
+
"description": "Work around editors that do not support 'source.fixall' code actions on save. This option may delivered a substandard user experience. Please refer to the installation guide to see which editors natively support code actions on save.",
77
+
"type": "boolean",
78
+
"default": false
79
+
},
80
80
"warn_style": {
81
81
"description": "Enables warnings for style guideline mismatches",
/// Work around editors that do not support 'source.fixall' code actions on save. This option may delivered a substandard user experience. Please refer to the installation guide to see which editors natively support code actions on save.
50
+
force_autofix: bool=false,
51
+
52
52
/// Enables warnings for style guideline mismatches
Copy file name to clipboardExpand all lines: src/tools/config.json
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -24,12 +24,6 @@
24
24
"type": "[]const []const u8",
25
25
"default": []
26
26
},
27
-
{
28
-
"name": "enable_autofix",
29
-
"description": "Whether to automatically fix errors on save. Currently supports adding and removing discards.",
30
-
"type": "bool",
31
-
"default": false
32
-
},
33
27
{
34
28
"name": "semantic_tokens",
35
29
"description": "Set level of semantic tokens. `partial` only includes information that requires semantic analysis.",
@@ -83,6 +77,12 @@
83
77
"type": "bool",
84
78
"default": false
85
79
},
80
+
{
81
+
"name": "force_autofix",
82
+
"description": "Work around editors that do not support 'source.fixall' code actions on save. This option may delivered a substandard user experience. Please refer to the installation guide to see which editors natively support code actions on save.",
83
+
"type": "bool",
84
+
"default": false
85
+
},
86
86
{
87
87
"name": "warn_style",
88
88
"description": "Enables warnings for style guideline mismatches",
0 commit comments