From 3ba68c97fa792f2eb59db87cf25c223f333df76e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Tue, 23 May 2023 10:17:15 +0200 Subject: [PATCH] MAke sure to lint only .ts and .vue files --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index dd60cb9..5dd5263 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "dev": "vite", "build": "vue-tsc --noEmit && vite build", "preview": "vite preview", - "lint": "eslint . --fix --ignore-path .gitignore", + "lint": "eslint . --fix --ignore-path .gitignore --ext .ts,.vue", "prettier-format": "prettier --config .prettierrc --ignore-path .gitignore --write \"./**/*.{vue,js,ts}\"", "prepare": "husky install" },