Skip to content

Commit

Permalink
style: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
KillerCodeMonkey committed Nov 9, 2023
1 parent 6e27f6b commit 2b4741e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions projects/ngx-quill/config/src/quill-editor.interfaces.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import { InjectionToken } from '@angular/core'

import { defaultModules } from './quill-defaults'
Expand Down
1 change: 1 addition & 0 deletions projects/ngx-quill/src/lib/quill-editor.component.spec.ts
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
1 change: 1 addition & 0 deletions projects/ngx-quill/src/lib/quill-editor.component.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import { DOCUMENT, isPlatformServer, CommonModule } from '@angular/common'
import { DomSanitizer } from '@angular/platform-browser'

Expand Down
3 changes: 2 additions & 1 deletion projects/ngx-quill/src/lib/quill-view.component.spec.ts
Original file line number Diff line number Diff line change
@@ -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'

Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions projects/ngx-quill/src/lib/quill-view.component.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import { CommonModule, isPlatformServer } from '@angular/common'
import QuillType from 'quill'

Expand Down
1 change: 1 addition & 0 deletions projects/ngx-quill/src/lib/quill.service.ts
Original file line number Diff line number Diff line change
@@ -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'
Expand Down

0 comments on commit 2b4741e

Please sign in to comment.