Update ESLint configuration and GitHub Actions workflow name

- Added 'docs' and 'legacy' to the ignored paths in the ESLint configuration to exclude additional directories from linting.
- Renamed the GitHub Actions documentation workflow for improved clarity, simplifying the name to "Documentation".

These changes enhance the development workflow and maintain cleaner code quality checks.
This commit is contained in:
Yury Pikhtarev 2025-07-11 23:33:18 +02:00
commit 566046ff6e
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
name: Documentation to GitHub Pages
name: Documentation
on:
push:

View file

@ -38,7 +38,7 @@ export default [
},
},
{
ignores: ['vendor', 'node_modules', 'public', 'bootstrap/ssr', 'tailwind.config.js'],
ignores: ['vendor', 'node_modules', 'public', 'bootstrap/ssr', 'tailwind.config.js', 'docs', 'legacy'],
},
prettier, // Turn off all rules that might conflict with Prettier
];