Skip to content

Commit 549ff7f

Browse files
elevatebartyyx990803
authored andcommitted
fix(tslint.json): linting of test(s) folder (#924)
tests were never tslinted becauve of a typo
1 parent 6adc0b5 commit 549ff7f

File tree

1 file changed

+1
-1
lines changed
  • packages/@vue/cli-plugin-typescript/lib

1 file changed

+1
-1
lines changed

Diff for: packages/@vue/cli-plugin-typescript/lib/tslint.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ module.exports = function lint (args = {}, api, silent) {
7575

7676
const files = args._ && args._.length
7777
? args._
78-
: ['src/**/*.ts', 'src/**/*.vue', 'test/**/*.ts']
78+
: ['src/**/*.ts', 'src/**/*.vue', 'tests/**/*.ts']
7979

8080
const stripTsExtension = str => str.replace(/\.vue\.ts\b/g, '.vue')
8181

0 commit comments

Comments
 (0)