Spaces:
Sleeping
Sleeping
module.exports = { | |
env: { | |
node: true, | |
es2022: true, | |
browser: true, | |
}, | |
extends: ["eslint:recommended", "plugin:astro/recommended"], | |
parserOptions: { | |
ecmaVersion: "latest", | |
sourceType: "module", | |
}, | |
rules: { | |
"no-unused-vars": "error", | |
"no-undef": "off", | |
"prefer-const": "error", | |
"no-case-declarations": "off", | |
}, | |
ignorePatterns: ["env.d.ts", "middleware/", "public/"], | |
overrides: [ | |
{ | |
files: ["*.astro"], | |
parser: "astro-eslint-parser", | |
parserOptions: { | |
parser: "@typescript-eslint/parser", | |
extraFileExtensions: [".astro"], | |
}, | |
}, | |
{ | |
files: ["*.ts", "*.tsx"], | |
parser: "@typescript-eslint/parser", | |
parserOptions: { | |
project: "./tsconfig.json", | |
}, | |
plugins: ["@typescript-eslint"], | |
extends: ["plugin:@typescript-eslint/recommended"], | |
rules: { | |
"@typescript-eslint/no-explicit-any": "off", | |
}, | |
}, | |
{ | |
// Define the configuration for `<script>` tag. | |
// Script in `<script>` is assigned a virtual file name with the `.js` extension. | |
files: ["**/*.astro/*.js", "*.astro/*.js"], | |
parser: "@typescript-eslint/parser", | |
}, | |
], | |
}; | |