Skip to content

Commit

Permalink
Bump @vue/language-server from 2.1.10 to 2.2.0 in /server (#134)
Browse files Browse the repository at this point in the history
* Bump @vue/language-server from 2.1.10 to 2.2.0 in /server

Bumps [@vue/language-server](https://github.com/vuejs/language-tools/tree/HEAD/packages/language-server) from 2.1.10 to 2.2.0.
- [Release notes](https://github.com/vuejs/language-tools/releases)
- [Changelog](https://github.com/vuejs/language-tools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/language-tools/commits/v2.2.0/packages/language-server)

---
updated-dependencies:
- dependency-name: "@vue/language-server"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* settings

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Rafal Chlodnicki <rchl2k@gmail.com>
  • Loading branch information
dependabot[bot] and rchl authored Jan 27, 2025
1 parent bcdb0b9 commit 8a09961
Show file tree
Hide file tree
Showing 4 changed files with 323 additions and 336 deletions.
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

0 comments on commit 8a09961

Please # to comment.