Initial commit

This commit is contained in:
2026-04-17 12:17:33 +03:30
commit d4d5f02e89
21 changed files with 11426 additions and 0 deletions

16
eslint.config.mjs Normal file
View 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"
},
},
];