Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Bump @vue/language-server from 2.1.10 to 2.2.0 in /server #134

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion LSP-vue.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,29 @@
"vue.complete.casing.props": "autoKebab",
// Auto add `const props = ` before `defineProps` when selecting the completion item `props`, `emit` and `slots`.
"vue.complete.defineAssignment": true,
// Show inlay hints for destructured props.
// Show inlay hints for destructured props:
//
// watch(() => /* props. */foo, () => { ... });
"vue.inlayHints.destructuredProps": false,
// Show inlay hints for missing required props.
//
// <Comp />
// <!-- ^ foo! -->
"vue.inlayHints.missingProps": false,
// Show inlay hints for event argument in inline handlers.
//
// <Comp @foo="/* $event => */console.log($event)" />
"vue.inlayHints.inlineHandlerLeading": false,
// Show inlay hints for component options wrapper for type support.
//
// <script lang="ts">
// export default /* (await import('vue')).defineComponent( */{}/* ) */;
// </script>
"vue.inlayHints.optionsWrapper": false,
// Show inlay hints for v-bind shorthand.
//
// <Comp :foo />
// <!-- ^ =\"foo\" -->
"vue.inlayHints.vBindShorthand": false,
// Whether to have initial indent.
"vue.format.template.initialIndent": true,
Expand Down
Loading