18 lines
395 B
JavaScript
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/*',
|
|
],
|
|
},
|
|
]
|