13 lines
381 B
JavaScript
13 lines
381 B
JavaScript
import eslintPluginAstro from "eslint-plugin-astro";
|
|
export default [
|
|
// add more generic rule sets here, such as:
|
|
// js.configs.recommended,
|
|
...eslintPluginAstro.configs["recommended"],
|
|
...eslintPluginAstro.configs["jsx-a11y-recommended"],
|
|
{
|
|
rules: {
|
|
// override/add rules settings here, such as:
|
|
// "astro/no-set-html-directive": "error"
|
|
},
|
|
},
|
|
];
|