User Guide
πΏ Installation
npm install --save-dev eslint eslint-plugin-astro
If you write TypeScript in Astro components, you also need to install the @typescript-eslint/parser
:
npm install --save-dev @typescript-eslint/parser
If you want to use the rules for checking accessibility (A11Y), you also need to install eslint-plugin-jsx-a11y additionally:
(It is used internally in the rules for A11Y.)
npm install --save-dev eslint-plugin-jsx-a11y
Requirements
- ESLint v7.0.0 and above
- Node.js v14.18.x, v16.x and above
:book: Usage
Configuration
Use .eslintrc.*
file to configure rules. See also: https://eslint.org/docs/user-guide/configuring.
Example .eslintrc.js. When using the shareable configuration provided by the plugin:
module.exports = {
// ...
extends: [
// ...
"plugin:astro/recommended",
],
// ...
overrides: [
{
// Define the configuration for `.astro` file.
files: ["*.astro"],
// Allows Astro components to be parsed.
parser: "astro-eslint-parser",
// Parse the script in `.astro` as TypeScript by adding the following configuration.
// It's the setting you need when using TypeScript.
parserOptions: {
parser: "@typescript-eslint/parser",
extraFileExtensions: [".astro"],
},
rules: {
// override/add rules settings here, such as:
// "astro/no-set-html-directive": "error"
},
},
// ...
],
}
If you do not use a shareable configuration, it is the same as the following configuration:
module.exports = {
// ...
overrides: [
{
// Define the configuration for `.astro` file.
files: ["*.astro"],
// Enable this plugin
plugins: ["astro"],
env: {
// Enables global variables available in Astro components.
node: true,
"astro/astro": true,
es2020: true,
},
// Allows Astro components to be parsed.
parser: "astro-eslint-parser",
// Parse the script in `.astro` as TypeScript by adding the following configuration.
// It's the setting you need when using TypeScript.
parserOptions: {
parser: "@typescript-eslint/parser",
extraFileExtensions: [".astro"],
// The script of Astro components uses ESM.
sourceType: "module",
},
rules: {
// Enable recommended rules
"astro/no-conflict-set-directives": "error",
"astro/no-unused-define-vars-in-style": "error",
// override/add rules settings here, such as:
// "astro/no-set-html-directive": "error"
},
},
{
// Define the configuration for `<script>` tag.
// Script in `<script>` is assigned a virtual file name with the `.js` extension.
files: ["**/*.astro/*.js", "*.astro/*.js"],
env: {
browser: true,
es2020: true,
},
parserOptions: {
sourceType: "module",
},
rules: {
// override/add rules settings here, such as:
// "no-unused-vars": "error"
// If you are using "prettier/prettier" rule,
// you don't need to format inside <script> as it will be formatted as a `.astro` file.
"prettier/prettier": "off",
},
},
// ...
],
}
The pull request diff here is an example of introducing eslint-plugin-astro
to the withastro/docs repository.
This plugin provides configs:
plugin:astro/base
β¦ Minimal configuration to enable correct Astro component linting.plugin:astro/recommended
β¦ Above, plus rules to prevent errors or unintended behavior.plugin:astro/all
β¦ Configuration enables all astro rules. Itβs meant for testing, not for production use because it changes with every minor and major version of the plugin. Use it at your own risk.- Extension of sharable configuration provided by eslint-plugin-jsx-a11y. You need to install eslint-plugin-jsx-a11y to use it.
plugin:astro/jsx-a11y-recommended
β¦ Similar to the"plugin:jsx-a11y/recommended"
configuration, but with the rules extended for Astro components enabled.plugin:astro/jsx-a11y-strict
β¦ Similar to the"plugin:jsx-a11y/strict"
configuration, but with the rules extended for Astro components enabled.
See the rule list to get the rules
that this plugin provides.
Parser Configuration
See https://github.com/ota-meshi/astro-eslint-parser#readme.
Running ESLint from the command line
If you want to run eslint
from the command line, make sure you include the .astro
extension using the --ext
option or a glob pattern, because ESLint targets only .js
files by default.
Examples:
eslint --ext .js,.astro src
eslint "src/**/*.{js,astro}"
π» Editor Integrations
Visual Studio Code
Use the dbaeumer.vscode-eslint extension that Microsoft provides officially.
You have to configure the eslint.validate
option of the extension to check .astro
files, because the extension targets only *.js
or *.jsx
files by default.
Example .vscode/settings.json:
{
"eslint.validate": [
"javascript",
"javascriptreact",
"astro", // Enable .astro
"typescript", // Enable .ts
"typescriptreact" // Enable .tsx
]
}
β FAQ
Parsing the .astro
file fails
You should check the parser configuration.
Edit this page
β Introduction Next Page
Rules β