language-tools icon indicating copy to clipboard operation
language-tools copied to clipboard

The Svelte Language Server, and official extensions which use it

Results 329 language-tools issues
Sort by recently updated
recently updated
newest added

**Describe the bug** When passing an undefined prop to a Svelte component which internally references `$$props`, no type error is reported by `svelte-check` for the passing of the undefined prop....

enhancement

### Description I recently refactored some properties of multiple interfaces in a larger code base from `required` to `optional`. Then I had to manually look into each markup section to...

repro: https://git.sr.ht/~zerdox/sveltejs-language-tools-1580 --- search keywords: is declared but its value is never read. ts(6133) is declared but its value is never read. (js) unused variable svelte-check --- Here is some...

bug
Fixed

### Describe the bug When using a reactive value to validate a condition on another variable (e.g. an `isLoaded` variable) typescript displays an error. This is very annoying on typescript...

### Describe the bug When I use the "Organize Imports" code action on a svelte file, the items in the braces is only delimited by `,`, not `, `. ###...

bug

**_I have updated the description_** ### Description When using the JavaScript API to instantiate a Svelte component, I would find it useful to get an error if I forget to...

Ref: https://github.com/sveltejs/language-tools/issues/1576

These warnings often do more harm than good and pollute our console real estate. It's not acceptable to litter the code with `` etc. We can usually filter these in...

question

### Describe the bug When I try to do the following: ```html .nav-item { @apply px-4 py-2 text-gray-600 hover:text-gray-900 hover:bg-gray-100 text-2xl md:text-xl font-semibold; } ``` My IDE throws an error...

documentation
question

### Describe the bug I have a Button component that renders a dynamic tag using svelte:element. Sometimes it renders anchor tags, so I have applied sveltekit:prefetch to the element, but...

bug