Skip to content
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