Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: 📝 adds VSCode instructions for official ESlint > v9.9.0 (#268) #269

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions apps/docs-website/docs/vscode-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@ To make the [VSCode ESLint Extension](https://marketplace.visualstudio.com/items
}
```

## Typescript support

### Using official ESlint > v9.9.0

If you are using an `eslint.config.ts` with [ESLint's experimental support for Typescript based configuration files](https://github.com/eslint/eslint/releases/tag/v9.9.0), add this to your workspace's `.vscode/settings.json`:

```JSONC title=".vscode/settings.json"
"eslint.options": {
"flags": ["unstable_ts_config"]
}
```

## Astro support

For [Astro](https://astro.build/) projects, add the astro extension too:
Expand Down