Disable hints in Go

This commit is contained in:
Anthony Rose 2024-10-03 20:58:47 +01:00
parent ffc0345d65
commit 9a4c1ce364
2 changed files with 23 additions and 3 deletions

View file

@ -1,4 +1,7 @@
<application>
<component name="CodeVisionSettings">
<option name="enabled" value="false" />
</component>
<component name="EditorSettings">
<option name="STRIP_TRAILING_SPACES" value="Whole" />
<option name="IS_ENSURE_NEWLINE_AT_EOF" value="true" />
@ -8,6 +11,14 @@
<option name="IS_INNER_WHITESPACES_SHOWN" value="false" />
<option name="KEEP_TRAILING_SPACE_ON_CARET_LINE" value="false" />
</component>
<component name="InlayHintsSettings">
<option name="disabledHintProviderIds">
<set>
<option value="go.go.inlays.display.constant.definition" />
<option value="go.microservices.url.path.inlay.hints" />
</set>
</option>
</component>
<component name="InlineCompletionOnboarding">
<option name="onboardingFinished" value="true" />
</component>

View file

@ -0,0 +1,9 @@
<application>
<component name="ParameterNameHintsSettings">
<option id="go.return.parameters" value="false" />
<option id="go.struct.unnamed.struct.fields" value="false" />
<disabledLanguages>
<language id="go" />
</disabledLanguages>
</component>
</application>