Skip to main content

๐Ÿš€ VS Code support

To make the VS Code ESLint Extension work better with Sheriff, we can enable a few settings. It is advisable to enable them at the workspace level, meaning in the root of the project at .vscode/settings.json

Enable linting on specified file extensionsโ€‹

.vscode/settings.json
{
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
]
}

eslint.config.ts supportโ€‹

If you are using a TypeScript config, add this to your .vscode/settings.json:

.vscode/settings.json
"eslint.options": {
"flags": ["unstable_ts_config"]
}

Astro supportโ€‹

For Astro projects, add the astro extension too:

.vscode/settings.json
{
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
"astro"
]
}

Avoid source.organizeImportsโ€‹

Sheriff already handles imports sorting, so if you happen to have enabled the VS Code automatic import sorting feature, you should disable it to avoid conflicts:

.vscode/settings.json
"editor.codeActionsOnSave": {
"source.organizeImports": "never"
}

If you wish, you can automatically fix some ESLint violations on save, including sorting imports:

.vscode/settings.json
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
}