๐ VSCode support
To make the VSCode ESLint Extension work better with Sheriff we can enable a few settings. It's 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"
  ]
}
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 VSCode 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"
}