Update ESLint configuration and GitHub Actions workflow name (#2045)
Some checks failed
Linter / quality (push) Has been cancelled
Documentation / Build Documentation (push) Has been cancelled
Tests / ci (push) Has been cancelled
Documentation / Deploy to GitHub Pages (push) Has been cancelled

- 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:39:10 +02:00 committed by GitHub
commit 18bcea02d8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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
];