From 9086078ac7138c3be863535d3fc85453fb092a45 Mon Sep 17 00:00:00 2001 From: Jeremy Wharton Date: Mon, 24 Jul 2023 10:19:15 -0500 Subject: [PATCH] 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 --- web/satellite/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/satellite/package.json b/web/satellite/package.json index 3689bf5c3..831b05269 100644 --- a/web/satellite/package.json +++ b/web/satellite/package.json @@ -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"