diff --git a/package.json b/package.json index 42a528304..6bff36882 100644 --- a/package.json +++ b/package.json @@ -12,9 +12,11 @@ "unit:watch": "node build/update-emoji.js && vitest", "e2e": "node test/e2e/runner.js", "test": "yarn run unit && yarn run e2e", - "stylelint": "yarn exec stylelint '**/*.scss' '**/*.vue'", - "lint": "yarn exec eslint src", - "lint-fix": "yarn eslint --fix src test/unit/specs test/e2e/specs" + "ci-biome": "yarn exec biome check", + "ci-eslint": "yarn exec eslint", + "ci-stylelint": "yarn exec stylelint '**/*.scss' '**/*.vue'", + "lint": "yarn ci-biome; yarn ci-eslint; yarn ci-stylelint", + "lint-fix": "yarn exec eslint --fix; yarn exec stylelint '**/*.scss' '**/*.vue' --fix; biome check --write" }, "dependencies": { "@babel/runtime": "7.28.4",