mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
integrate Prettier with tslint (#1419)
* integrate prettier with tslint * remove obsolte scripts * update tsconfig * fix lint issues * fix lint errors * more rules and fixes * kebab case and lint fixes * update helpers * update util
This commit is contained in:
@@ -52,6 +52,7 @@ export class SearchInputControlComponent implements OnDestroy {
|
||||
/** Emitted when the search is submitted pressing ENTER button.
|
||||
* The search term is provided as value of the event.
|
||||
*/
|
||||
// tslint:disable-next-line: no-output-native
|
||||
@Output()
|
||||
submit: EventEmitter<any> = new EventEmitter();
|
||||
|
||||
|
@@ -99,7 +99,7 @@ describe('SearchInputComponent', () => {
|
||||
done();
|
||||
})
|
||||
);
|
||||
component.onSearchSubmit(<any>{ target: { value: searchedTerm } });
|
||||
component.onSearchSubmit({ target: { value: searchedTerm } });
|
||||
tick();
|
||||
}));
|
||||
|
||||
@@ -112,7 +112,7 @@ describe('SearchInputComponent', () => {
|
||||
done();
|
||||
})
|
||||
);
|
||||
component.onSearchSubmit(<any>{ target: { value: searchedTerm } });
|
||||
component.onSearchSubmit({ target: { value: searchedTerm } });
|
||||
tick();
|
||||
}));
|
||||
});
|
||||
|
Reference in New Issue
Block a user