diff --git a/projects/ngx-quill/config/src/quill-editor.interfaces.ts b/projects/ngx-quill/config/src/quill-editor.interfaces.ts index 2e0a6a6d..01254ccd 100644 --- a/projects/ngx-quill/config/src/quill-editor.interfaces.ts +++ b/projects/ngx-quill/config/src/quill-editor.interfaces.ts @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ import { InjectionToken } from '@angular/core' import { defaultModules } from './quill-defaults' diff --git a/projects/ngx-quill/src/lib/quill-editor.component.spec.ts b/projects/ngx-quill/src/lib/quill-editor.component.spec.ts index 03a1509a..2572e814 100644 --- a/projects/ngx-quill/src/lib/quill-editor.component.spec.ts +++ b/projects/ngx-quill/src/lib/quill-editor.component.spec.ts @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ import {Component, Renderer2, ViewChild} from '@angular/core' import {ComponentFixture, fakeAsync, TestBed, tick} from '@angular/core/testing' import {defer} from 'rxjs' diff --git a/projects/ngx-quill/src/lib/quill-editor.component.ts b/projects/ngx-quill/src/lib/quill-editor.component.ts index 7150571d..3f2d779b 100644 --- a/projects/ngx-quill/src/lib/quill-editor.component.ts +++ b/projects/ngx-quill/src/lib/quill-editor.component.ts @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ import { DOCUMENT, isPlatformServer, CommonModule } from '@angular/common' import { DomSanitizer } from '@angular/platform-browser' diff --git a/projects/ngx-quill/src/lib/quill-view.component.spec.ts b/projects/ngx-quill/src/lib/quill-view.component.spec.ts index a12e73c0..53d3b833 100644 --- a/projects/ngx-quill/src/lib/quill-view.component.spec.ts +++ b/projects/ngx-quill/src/lib/quill-view.component.spec.ts @@ -1,3 +1,5 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ +/* eslint-disable max-classes-per-file */ import { Component, ViewChild } from '@angular/core' import { ComponentFixture, TestBed } from '@angular/core/testing' @@ -6,7 +8,6 @@ import { QuillViewComponent } from './quill-view.component' import { QuillModule } from './quill.module' import Quill from 'quill' -/* eslint-disable max-classes-per-file */ class CustomModule { quill: Quill diff --git a/projects/ngx-quill/src/lib/quill-view.component.ts b/projects/ngx-quill/src/lib/quill-view.component.ts index 3a9feb01..6957fee0 100644 --- a/projects/ngx-quill/src/lib/quill-view.component.ts +++ b/projects/ngx-quill/src/lib/quill-view.component.ts @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ import { CommonModule, isPlatformServer } from '@angular/common' import QuillType from 'quill' diff --git a/projects/ngx-quill/src/lib/quill.service.ts b/projects/ngx-quill/src/lib/quill.service.ts index 795deae1..b67972aa 100644 --- a/projects/ngx-quill/src/lib/quill.service.ts +++ b/projects/ngx-quill/src/lib/quill.service.ts @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ import { DOCUMENT } from '@angular/common' import { Injectable, Inject, Injector, Optional } from '@angular/core' import { defer, firstValueFrom, isObservable, Observable } from 'rxjs'