From 4cb30a05b310bb1b1e5f1e5f712c93de98fdf22a Mon Sep 17 00:00:00 2001 From: MrTimscampi Date: Fri, 4 Sep 2020 17:24:23 +0200 Subject: [PATCH] build(eslint): change eslint command to lint .ts files and use gitignore --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 360ed2d4..025fe0a1 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "build": "nuxt-ts build", "start": "nuxt-ts start", "generate": "nuxt-ts generate", - "lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .", + "lint:js": "eslint --ext .ts,.js,.vue .", "lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore", "lint": "yarn lint:js && yarn lint:style", "test": "jest"