Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Commit

Permalink
Remove tslint check-separator to workaround tslint issue in jenkins
Browse files Browse the repository at this point in the history
Improved solution might be to upgrade
yarn version to 1.3+
  • Loading branch information
CloudNiner committed Nov 28, 2017
1 parent f331c87 commit 5836063
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/services/image-export.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export class ImageExportService {
/**
* Converts chart SVG to PNG and downloads it.
*
* @param indicatorName {string} Name of indicator; used for SVG selector
* @param fileName {string} File name for download; will be suffixed with extension
* @param indicatorName - Name of indicator, used for SVG selector
* @param fileName - File name for download, will be suffixed with extension
*/
public downloadAsPNG(indicatorName: string, fileName: string): void {
const filename: string = fileName + '.png';
Expand Down
3 changes: 2 additions & 1 deletion tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@
"check-branch",
"check-decl",
"check-operator",
"check-separator",
// Removed to work around https://github.com/palantir/tslint/issues/3251
// "check-separator",
"check-type"
],
"directive-selector": [
Expand Down

0 comments on commit 5836063

Please sign in to comment.