Some checks failed
Portfolio/pipeline/head There was a failure building this commit
24 lines
555 B
JavaScript
24 lines
555 B
JavaScript
import eslintPluginAstro from 'eslint-plugin-astro';
|
|
import tsParser from '@typescript-eslint/parser';
|
|
|
|
export default [
|
|
// Configuration pour les fichiers Astro
|
|
...eslintPluginAstro.configs.recommended,
|
|
{
|
|
files: ["**/*.astro"],
|
|
languageOptions: {
|
|
parser: eslintPluginAstro.parser,
|
|
parserOptions: {
|
|
parser: tsParser,
|
|
extraFileExtensions: [".astro"],
|
|
},
|
|
},
|
|
rules: {
|
|
// Tes règles personnalisées ici
|
|
},
|
|
},
|
|
// On ignore le dossier de build
|
|
{
|
|
ignores: ["dist/*", ".astro/*"]
|
|
}
|
|
]; |