From 566046ff6e574bde1804e3fb73377f2d02b3dc4b Mon Sep 17 00:00:00 2001 From: Yury Pikhtarev Date: Fri, 11 Jul 2025 23:33:18 +0200 Subject: [PATCH] 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. --- .github/workflows/docs.yml | 2 +- eslint.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 5e3f926d3..1510bd000 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -1,4 +1,4 @@ -name: Documentation to GitHub Pages +name: Documentation on: push: diff --git a/eslint.config.js b/eslint.config.js index a136d2248..0c16d683c 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -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 ];