Disable hints in Go
This commit is contained in:
parent
ffc0345d65
commit
9a4c1ce364
2 changed files with 23 additions and 3 deletions
|
@ -1,4 +1,7 @@
|
||||||
<application>
|
<application>
|
||||||
|
<component name="CodeVisionSettings">
|
||||||
|
<option name="enabled" value="false" />
|
||||||
|
</component>
|
||||||
<component name="EditorSettings">
|
<component name="EditorSettings">
|
||||||
<option name="STRIP_TRAILING_SPACES" value="Whole" />
|
<option name="STRIP_TRAILING_SPACES" value="Whole" />
|
||||||
<option name="IS_ENSURE_NEWLINE_AT_EOF" value="true" />
|
<option name="IS_ENSURE_NEWLINE_AT_EOF" value="true" />
|
||||||
|
@ -8,6 +11,14 @@
|
||||||
<option name="IS_INNER_WHITESPACES_SHOWN" value="false" />
|
<option name="IS_INNER_WHITESPACES_SHOWN" value="false" />
|
||||||
<option name="KEEP_TRAILING_SPACE_ON_CARET_LINE" value="false" />
|
<option name="KEEP_TRAILING_SPACE_ON_CARET_LINE" value="false" />
|
||||||
</component>
|
</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">
|
<component name="InlineCompletionOnboarding">
|
||||||
<option name="onboardingFinished" value="true" />
|
<option name="onboardingFinished" value="true" />
|
||||||
</component>
|
</component>
|
||||||
|
|
9
misc/JetBrains-ACP/options/parameter.hints.xml
Normal file
9
misc/JetBrains-ACP/options/parameter.hints.xml
Normal 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>
|
Loading…
Reference in a new issue