From 52143f8959dda1e6b837db4bbc57ab6eef2bb158 Mon Sep 17 00:00:00 2001 From: Artur Carvalho <artur.carvalho@uni.lu> Date: Mon, 23 Jan 2023 16:22:09 +0100 Subject: [PATCH] Change pipeline to only check src folder --- package.json | 4 ++-- src/components/AgTable.vue | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index cf570da..d847d93 100644 --- a/package.json +++ b/package.json @@ -11,8 +11,8 @@ "build-only": "vite build", "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false", "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore", - "format": "prettier --check .", - "format:fix": "prettier --write ." + "format": "prettier --check src", + "format:fix": "prettier --write src" }, "dependencies": { "@tanstack/vue-table": "^8.7.6", diff --git a/src/components/AgTable.vue b/src/components/AgTable.vue index fa2839e..d217500 100644 --- a/src/components/AgTable.vue +++ b/src/components/AgTable.vue @@ -15,7 +15,7 @@ const reference = ref(); useTippy(reference, { content: "Hi!", - followCursor: "horizontal", + followCursor: "horizontal", }); const rows = [ -- GitLab