mirror of
https://github.com/awfufu/awfufu.com.git
synced 2026-03-01 04:29:42 +08:00
14 lines
300 B
JavaScript
14 lines
300 B
JavaScript
// @ts-check
|
|
|
|
export default [
|
|
// ...eslintPluginAstro.configs.recommended,
|
|
// Ignore files
|
|
{
|
|
ignores: ['public/scripts/*', 'scripts/*', '.astro/', 'src/env.d.ts'],
|
|
rules: {
|
|
// override/add rules settings here, such as:
|
|
// "astro/no-set-html-directive": "error"
|
|
}
|
|
}
|
|
]
|