prettier: change to single quoting

This commit is contained in:
Torkel Ödegaard
2017-12-20 12:33:33 +01:00
parent 2a360c45a2
commit 85879a7014
304 changed files with 10558 additions and 10519 deletions

View File

@@ -1,4 +1,4 @@
import coreModule from "app/core/core_module";
import coreModule from 'app/core/core_module';
export function react2AngularDirective(
name: string,
@@ -6,9 +6,9 @@ export function react2AngularDirective(
options: any
) {
coreModule.directive(name, [
"reactDirective",
'reactDirective',
reactDirective => {
return reactDirective(component, options);
}
},
]);
}