Skip to content

Commit

Permalink
Merge pull request #278 from LRH539/277-fix-lint
Browse files Browse the repository at this point in the history
fix: Change lint api url.
  • Loading branch information
jdalrymple authored Feb 27, 2019
2 parents 8f551f1 + 78f7357 commit 1d6e6e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/Lint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { BaseService, RequestHelper } from '../infrastructure';

class Lint extends BaseService {
lint(content: string) {
return RequestHelper.post(this, 'lint', { content });
return RequestHelper.post(this, 'ci/lint', { content });
}
}

Expand Down

0 comments on commit 1d6e6e2

Please sign in to comment.