From 549ff7fe39030dd84c8d7563c05d91d81397be67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barth=C3=A9l=C3=A9my=20Ledoux?= Date: Fri, 2 Mar 2018 16:59:41 -0600 Subject: [PATCH] fix(tslint.json): linting of test(s) folder (#924) tests were never tslinted becauve of a typo --- packages/@vue/cli-plugin-typescript/lib/tslint.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@vue/cli-plugin-typescript/lib/tslint.js b/packages/@vue/cli-plugin-typescript/lib/tslint.js index b5c1a0c8c4..5929f0ee4d 100644 --- a/packages/@vue/cli-plugin-typescript/lib/tslint.js +++ b/packages/@vue/cli-plugin-typescript/lib/tslint.js @@ -75,7 +75,7 @@ module.exports = function lint (args = {}, api, silent) { const files = args._ && args._.length ? args._ - : ['src/**/*.ts', 'src/**/*.vue', 'test/**/*.ts'] + : ['src/**/*.ts', 'src/**/*.vue', 'tests/**/*.ts'] const stripTsExtension = str => str.replace(/\.vue\.ts\b/g, '.vue')