Fix linting config

This commit is contained in:
2025-11-10 16:36:09 +01:00
parent 21f25bd31e
commit fb6c1039ca
3 changed files with 5 additions and 5 deletions

View File

@@ -19,8 +19,8 @@ jobs:
run: |
npm install -g htmlhint stylelint eslint
- name: Lint HTML
run: htmlhint SmartClinicManagementSystem/app/src/main/resources/static/assets/pages//*.html || true
run: htmlhint "./SmartClinicManagementSystem/app/src/main/resources/static/assets/pages/*.html" || true
- name: Lint CSS
run: stylelint "SmartClinicManagementSystem/app/src/main/resources/static/assets/css//*.css" || true
run: stylelint "./SmartClinicManagementSystem/app/src/main/resources/static/assets/css/*.css" || true
- name: Lint JS
run: eslint SmartClinicManagementSystem/app/src/main/resources/static/assets/js//*.js || true
run: eslint "./SmartClinicManagementSystem/app/src/main/resources/static/js/*.js" || true