Skip to content
This repository was archived by the owner on Jan 18, 2021. It is now read-only.

Commit c0ac19d

Browse files
committed
Fix ESLint failues in tasks/tslint.js
1 parent 46c5514 commit c0ac19d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tasks/tslint.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module.exports = function (grunt) {
2828
outputReport: null,
2929
appendToOutput: false,
3030
force: false,
31-
fix: false
31+
fix: false,
3232
});
3333

3434
var specifiedConfiguration = options.configuration;
@@ -53,8 +53,8 @@ module.exports = function (grunt) {
5353

5454
var lintOptions = {
5555
fix: options.fix,
56-
formatter: options.formatter
57-
}
56+
formatter: options.formatter,
57+
};
5858

5959
var linter = new Linter.Linter(lintOptions);
6060
var contents = grunt.file.read(filepath);

0 commit comments

Comments
 (0)