Skip to content
This repository has been archived by the owner on Jul 8, 2019. It is now read-only.

Commit

Permalink
Merge pull request #12 from alexkrauss/master
Browse files Browse the repository at this point in the history
Removing -f option, to adapt to tslint cli change.
  • Loading branch information
Pablissimo committed Sep 16, 2015
2 parents 43f89c3 + f6d256e commit 9308e17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/pablissimo/sonar/TsLintExecutorImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public String execute(String pathToTsLint, String configFile, String file) {
Command command = Command.create("node");

command
.addArgument("\"" + pathToTsLint + "\" --config \"" + configFile + "\" --format json -f \"" + file.trim() + "\"");
.addArgument("\"" + pathToTsLint + "\" --config \"" + configFile + "\" --format json \"" + file.trim() + "\"");

command.setNewShell(true);

Expand Down

0 comments on commit 9308e17

Please sign in to comment.