You'll need the ESLint extension installed.
Then, you'll need to tell the ESLint extension to also lint files with language svelte
. If you haven't adjusted the eslint.validate
setting, it defaults to [ "javascript", "javascriptreact" ]
, so put this in your settings.json
:
{
"eslint.validate": [
"javascript",
"javascriptreact",
"svelte"
]
}
Reload VS Code and give it a go!
You'll need the linter and linter-eslint packages installed.
Unless you're using .html
for your Svelte components, you'll need to configure *
.core
.customFileTypes
to associate the appropriate file extension with the text.html.basic
language. For example, to associate .svelte
, put this in your config.cson
:
"*":
core:
customFileTypes:
"text.html.basic": [
"svelte"
]
Then, you'll need to tell linter-eslint to also lint HTML files: add source.html
to the list of scopes to run ESLint on in the linter-eslint settings.
Reload Atom and give it a go!
You'll need the SublimeLinter and SublimeLinter-eslint packages installed.
Unless you're using .html
for your Svelte components, you'll need to configure Sublime to associate the appropriate file extension with the text.html
syntax. Open any Svelte component, and go to View > Syntax > Open all with current extension as... > HTML.
Then, you'll need to tell SublimeLinter-eslint to lint entire files with the text.html
syntax, and not just the contents of their <script>
tags (which is the default). In your SublimeLinter configuration, you'll need to add text.html
to linters
.eslint
.selector
. If you're starting with the default values, this would mean:
{
"linters": {
"eslint": {
"selector": "source.js - meta.attribute-with-value, text.html"
}
}
}
Reload Sublime and give it a go!
You'll need the ALE (Asynchronous Lint Engine) plugin installed.
Unless you're using .html
for your Svelte components, you'll need to configure Vim to associate the appropriate file extension with the html
syntax. For example, to associate .svelte
, put this in your .vimrc
:
au BufNewFile,BufRead,BufReadPost *.svelte set syntax=html
Then you'll need to tell ALE to lint and fix .svelte
files using ESLint, so put this in your .vimrc
:
let g:ale_linter_aliases = {
\ 'svelte': ['javascript']
\}
let g:ale_linters = {
\ 'svelte': ['eslint']
\}
let g:ale_fixers = {
\ 'svelte': ['eslint']
\}
Reload Vim and give it a go!
If you've gotten this plugin to work with other editors, please let us know!