chore: update eslint to sort out imports (#1655)

* chore: update eslint to sort out imports

* turn warnings into errrors
This commit is contained in:
Andrew Tatomyr
2024-08-12 10:18:29 +03:00
committed by GitHub
parent 47aa04e97b
commit d0fc69c2bb
131 changed files with 916 additions and 355 deletions

View File

@@ -1,8 +1,9 @@
import { parseYaml } from '../js-yaml';
import { Document, Source } from '../resolve';
import { Oas3RuleSet } from '../oas-types';
import { Source } from '../resolve';
import { StyleguideConfig, mergeExtends, resolvePlugins } from '../config';
import type { Document } from '../resolve';
import type { Oas3RuleSet } from '../oas-types';
import type { RuleConfig, Plugin, ResolvedStyleguideConfig } from '../config/types';
export function parseYamlToDocument(body: string, absoluteRef: string = ''): Document {