MOBILE-4616 test: Fix linting

main
Pau Ferrer Ocaña 2024-07-16 16:22:54 +02:00
parent 55b8a74d88
commit d424ba0f60
4 changed files with 6 additions and 5 deletions

View File

@ -30,6 +30,11 @@ export class CoreCoursesLinksHandlerBase extends CoreContentLinksHandlerBase {
/** /**
* Get actions to open course content. * Get actions to open course content.
*
* @param url URL to treat.
* @param courseId Course ID.
* @param pageParams Params to send to the new page.
* @returns Promise resolved with the actions.
*/ */
protected getCourseActions(url: string, courseId: number, pageParams: Params = {}): CoreContentLinksAction[] { protected getCourseActions(url: string, courseId: number, pageParams: Params = {}): CoreContentLinksAction[] {
return [{ return [{

View File

@ -550,7 +550,7 @@ export class CoreEditorRichTextEditorComponent implements OnInit, AfterViewInit,
/** /**
* Check if text is empty. * Check if text is empty.
* *
* @param value Text or element containing the text. * @param valueOrEl Text or element containing the text.
* @returns If value is null only a white space. * @returns If value is null only a white space.
*/ */
protected isNullOrWhiteSpace(valueOrEl: string | HTMLElement | null | undefined): boolean { protected isNullOrWhiteSpace(valueOrEl: string | HTMLElement | null | undefined): boolean {

View File

@ -26,8 +26,6 @@ import { CoreTagListComponent } from './list/list';
imports: [ imports: [
CoreSharedModule, CoreSharedModule,
], ],
providers: [
],
exports: [ exports: [
CoreTagFeedComponent, CoreTagFeedComponent,
CoreTagListComponent, CoreTagListComponent,

View File

@ -26,8 +26,6 @@ import { CoreUserTagAreaComponent } from './tag-area/tag-area';
imports: [ imports: [
CoreSharedModule, CoreSharedModule,
], ],
providers: [
],
exports: [ exports: [
CoreUserProfileFieldComponent, CoreUserProfileFieldComponent,
CoreUserTagAreaComponent, CoreUserTagAreaComponent,