web/satellite: remove glob patterns from linting commands

The glob patterns in the linting commands have been removed in favor of
a simpler way of expressing which files should be linted.

Change-Id: I150a01725642b4bc445e2e157ddf86e50e3911a2
This commit is contained in:
Jeremy Wharton 2023-07-24 10:19:15 -05:00
parent 73a279235a
commit 9086078ac7

View File

@ -9,8 +9,8 @@
"build-watch": "vite build --mode=development -c vite.config.js --watch",
"build-vuetify": "vite build -c vite.config-vuetify.js",
"build-vuetify-watch": "vite build --mode=development -c vite.config-vuetify.js --watch",
"lint": "eslint **/*.{js,ts,vue} --fix && stylelint . --max-warnings 0 --fix",
"lint-ci": "eslint **/*.{js,ts,vue} --no-fix && stylelint . --max-warnings 0 --no-fix",
"lint": "eslint . --ext .js,.ts,.vue --fix && stylelint . --max-warnings 0 --fix",
"lint-ci": "eslint . --ext .js,.ts,.vue --no-fix && stylelint . --max-warnings 0 --no-fix",
"wasm": "chmod +x ./scripts/build-wasm.sh && ./scripts/build-wasm.sh",
"wasm-dev": "chmod +x ./scripts/build-wasm-dev.sh && ./scripts/build-wasm-dev.sh",
"test": "vitest run"