fix(tslint.json): linting of test(s) folder (#924)

tests were never tslinted becauve of a typo
This commit is contained in:
Barthélémy Ledoux
2018-03-02 16:59:41 -06:00
committed by Evan You
parent 6adc0b5dd9
commit 549ff7fe39

View File

@@ -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')