WebUI: enable cache for lint checks

Also, WebUI gets its own .gitignore file.
This commit is contained in:
Chocobo1 2025-01-21 13:03:07 +08:00
parent 82c36aea89
commit 5098519d46
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
3 changed files with 6 additions and 5 deletions

4
.gitignore vendored
View File

@ -41,7 +41,3 @@ src/icons/skin/build-icons/icons/*.png
# CMake build directory
build/
# Web UI tools
node_modules
package-lock.json

5
src/webui/www/.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
# Web UI tools
.eslintcache
.stylelintcache
node_modules
package-lock.json

View File

@ -7,7 +7,7 @@
},
"scripts": {
"format": "js-beautify -r *.mjs private/*.html private/scripts/*.js private/views/*.html public/*.html public/scripts/*.js && prettier --write **.css",
"lint": "eslint *.mjs private/*.html private/scripts/*.js private/views/*.html public/*.html public/scripts/*.js && stylelint **/*.css && html-validate private public"
"lint": "eslint --cache *.mjs private/*.html private/scripts/*.js private/views/*.html public/*.html public/scripts/*.js && stylelint --cache **/*.css && html-validate private public"
},
"devDependencies": {
"@stylistic/eslint-plugin": "*",