Skip to content

Commit b36a9e0

Browse files
greenkeeperio-botsebholstein
authored andcommitted
chore(package): update clang-format to version 1.0.42
Closes sebholstein#459
1 parent 2a92b4f commit b36a9e0

File tree

5 files changed

+5
-9
lines changed

5 files changed

+5
-9
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
},
3636
"devDependencies": {
3737
"babel-eslint": "6.0.4",
38-
"clang-format": "1.0.41",
38+
"clang-format": "1.0.42",
3939
"del": "2.2.0",
4040
"eslint": "^3.0.0",
4141
"eslint-config-airbnb-base": "^3.0.1",

src/core/directives/google-map-circle.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ import {CircleManager} from '../services/managers/circle-manager';
1818
'mouseMove', 'mouseOut', 'mouseOver', 'mouseUp', 'radiusChange', 'rightClick'
1919
]
2020
})
21-
export class SebmGoogleMapCircle implements OnInit,
22-
OnChanges, OnDestroy {
21+
export class SebmGoogleMapCircle implements OnInit, OnChanges, OnDestroy {
2322
/**
2423
* The latitude position of the circle (required).
2524
*/

src/core/directives/google-map-info-window.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ let infoWindowId = 0;
4444
</div>
4545
`
4646
})
47-
export class SebmGoogleMapInfoWindow implements OnDestroy,
48-
OnChanges {
47+
export class SebmGoogleMapInfoWindow implements OnDestroy, OnChanges {
4948
/**
5049
* The latitude position of the info window (only usefull if you use it ouside of a {@link
5150
* SebmGoogleMapMarker}).

src/core/directives/google-map-marker.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ let markerId = 0;
3838
inputs: ['latitude', 'longitude', 'title', 'label', 'draggable: markerDraggable', 'iconUrl'],
3939
outputs: ['markerClick', 'dragEnd']
4040
})
41-
export class SebmGoogleMapMarker implements OnDestroy,
42-
OnChanges, AfterContentInit {
41+
export class SebmGoogleMapMarker implements OnDestroy, OnChanges, AfterContentInit {
4342
/**
4443
* The latitude position of the marker.
4544
*/

src/core/directives/google-map.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,7 @@ import {MarkerManager} from '../services/managers/marker-manager';
6060
</div>
6161
`
6262
})
63-
export class SebmGoogleMap implements OnChanges,
64-
OnInit {
63+
export class SebmGoogleMap implements OnChanges, OnInit {
6564
/**
6665
* The longitude that defines the center of the map.
6766
*/

0 commit comments

Comments
 (0)