Skip to content

Commit

Permalink
fix(tslint): add correct semicolon option (#1777)
Browse files Browse the repository at this point in the history
  • Loading branch information
eduhenke authored and nnixaa committed Jul 24, 2018
1 parent 99fa419 commit 00e6ca5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/@theme/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ export * from './tiny-mce/tiny-mce.component';
export * from './theme-settings/theme-settings.component';
export * from './theme-switcher/theme-switcher.component';
export * from './switcher/switcher.component';
export * from './layout-direction-switcher/layout-direction-switcher.component'
export * from './theme-switcher/themes-switcher-list/themes-switcher-list.component'
export * from './layout-direction-switcher/layout-direction-switcher.component';
export * from './theme-switcher/themes-switcher-list/themes-switcher-list.component';
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export class TemperatureDraggerComponent implements AfterViewInit, OnChanges {
// TODO: review set data to styles object
setTimeout(() => {
this.invalidateGradientArcs();
})
});
}

private calculateVars() {
Expand Down
1 change: 1 addition & 0 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
],
"radix": true,
"semicolon": [
true,
"always"
],
"triple-equals": [
Expand Down

0 comments on commit 00e6ca5

Please sign in to comment.