18 lines
378 B
JavaScript
18 lines
378 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ["custom", "plugin:astro/recommended"],
|
|
overrides: [
|
|
{
|
|
files: ["*.astro"],
|
|
parser: "astro-eslint-parser",
|
|
parserOptions: {
|
|
parser: "@typescript-eslint/parser",
|
|
extraFileExtensions: [".astro"],
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
},
|
|
},
|
|
],
|
|
};
|