Added initial Astro starter kit with font setup, linting/formatting,SEO/Sitemap TailwindCSS, Alpine.js, and Dockerize
This commit is contained in:
16
eslint.config.mjs
Normal file
16
eslint.config.mjs
Normal file
@@ -0,0 +1,16 @@
|
||||
import eslintPluginAstro from 'eslint-plugin-astro';
|
||||
|
||||
export default [
|
||||
{
|
||||
ignores: ['.astro/**', 'dist/**', 'node_modules/**'],
|
||||
},
|
||||
// اضافه کردن تنظیمات پیشنهادی (Recommended) برای Astro
|
||||
...eslintPluginAstro.configs.recommended,
|
||||
...eslintPluginAstro.configs['jsx-a11y-recommended'],
|
||||
{
|
||||
// اگر قوانین خاصی مد نظرتان است میتوانید اینجا اضافه کنید
|
||||
rules: {
|
||||
// "astro/no-set-html-directive": "error"
|
||||
},
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user