ayco.io-astro/eslint.config.mjs
2024-12-25 20:42:09 +01:00

18 lines
395 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'],
{
ignores: [
'dist/*',
'.output/*',
'.nitro/*',
'node-modules*',
'site/*',
'templates/*',
],
},
]