wrath/eslint.config.cjs
2024-11-27 03:31:15 +08:00

12 lines
383 B
JavaScript

const eslintPluginAstro = require("eslint-plugin-astro")
module.exports = [
// add more generic rule sets here, such as:
// js.configs.recommended,
...eslintPluginAstro.configs["flat/recommended"], // In CommonJS, the `flat/` prefix is required.
{
rules: {
// override/add rules settings here, such as:
// "astro/no-set-html-directive": "error"
},
},
]