language-tools
language-tools copied to clipboard
The Svelte Language Server, and official extensions which use it
### Description If I build a sveltekit project in VSCode , I get a notification : "Svelte language sever detected a large amount of files" I believe this makes access...
### Describe the bug vscode auto format not correct https://github.com/sveltejs/language-tools/assets/1042568/f6140742-b6b2-4882-b083-b6daf0b183a5 ### Reproduction ```html Show Popup ``` after auto format ```html Show Popup ``` ### Expected behaviour ```html Show Popup ```...
### Description I want to have an easy, graphical initiation of a new Svelte project in VSCode. ### Proposed solution VSCode command that creates Wizard init project The command causes...
### Describe the bug Having an inline event handler inside an element (doesn't have to be a special element) breaks `` tag IntelliSense. ### Reproduction Copy and paste the snippet...
### Describe the bug when your `tsconfig.json` is invalid, `svelte-check` does not complain ``` > tsc tsconfig.json:12:47 - error TS6046: Argument for '--moduleResolution' option must be: 'node10', 'classic', 'node16', 'nodenext',...
Currently there are three places where I should configure ignores for svelte's a11y warnings: 1. **language server** ```lua lspconfig.svelte.setup{ cmd = { "yarn", "svelteserver", "--stdio" }; on_attach = on_attach; settings...
### Describe the bug Renaming svelte files several times in a short amount of time crashes the language server. It might be because of a race condition: the previous "Update...
Closes #2033 With the introduction of "zero effort typing" the generated templates from the Svelt Extension no longer need the types, this change reflects that by removing these types from...
### Description I'm working on getting svelte working with deno/vite and I have a fully working demo, and typescript works near perfectly, except for URL imports. Since URL imports are...
### Describe the bug `svelte-check` believes fields are initialized before constructor arguments. This is false. ### Reproduction ```ts export default class Foo { private readonly tags = this.form.querySelector('[name=tags]'); constructor(private readonly...