lint: remove unused imports
This commit is contained in:
parent
456b30d77c
commit
6dc9b70e15
|
@ -1,5 +1,5 @@
|
|||
import { doesExist, ensureArray, hasItems } from '@apextoaster/js-utils';
|
||||
import { ErrorObject, ValidateFunction } from 'ajv';
|
||||
import { doesExist, ensureArray } from '@apextoaster/js-utils';
|
||||
import { ErrorObject } from 'ajv';
|
||||
import lodash from 'lodash';
|
||||
import { LogLevel } from 'noicejs';
|
||||
|
||||
|
@ -11,8 +11,6 @@ import { Rule, RuleData, RuleError, RuleResult, ValidatorResult } from './index.
|
|||
/* eslint-disable-next-line @typescript-eslint/unbound-method */
|
||||
const { cloneDeep, defaultTo } = lodash;
|
||||
|
||||
const DEFAULT_FILTER = () => true;
|
||||
|
||||
export class SchemaRule implements Rule, RuleData {
|
||||
public readonly checkSchema: object;
|
||||
public readonly desc: string;
|
||||
|
|
|
@ -8,7 +8,7 @@ import { Document, Element } from '../source.js';
|
|||
import { Visitor } from './index.js';
|
||||
import { VisitorContext } from './VisitorContext.js';
|
||||
|
||||
const { applyDiff, diff } = deepDiff;
|
||||
const { diff } = deepDiff;
|
||||
/* eslint-disable-next-line @typescript-eslint/unbound-method */
|
||||
const { cloneDeep } = lodash;
|
||||
|
||||
|
|
Loading…
Reference in New Issue