@@ -79,7 +79,7 @@ export default [
/**
* Stop propagation of click events and hold htmlElement of the emojipicker
*/
- let EmoijPickerContainer = (function(){
+ let EmoijPickerContainer = (function() {
let instance;
function click(e) {
@@ -250,7 +250,7 @@ angular.module('3ema.filters', [])
.filter('idsToNames', ['WebClientService', function (webClientService: threema.WebClientService) {
return(ids: string[]) => {
let names: string[] = [];
- for (let id of ids){
+ for (let id of ids) {
this.contactReceiver = webClientService.contacts.get(id);
names.push(this.contactReceiver.displayName);
}
@@ -10,6 +10,7 @@
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"quotemark": [true, "single", "avoid-escape"],
- "indent": [true, "spaces"]
+ "indent": [true, "spaces"],
+ "whitespace": [true, "check-branch", "check-decl", "check-operator", "check-module", "check-separator", "check-type", "check-typecast", "check-preblock"]