ayco.io-astro/eslint.config.mjs
2024-12-25 18:34:54 +01:00

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"
},
},
];