Skip to content

Commit

Permalink
fix: typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
Nelfimov committed Jul 3, 2024
1 parent 572e477 commit b5fe459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/code-format/src/formatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import * as graphql from 'prettier/plugins/graphql'
import * as markdown from 'prettier/plugins/markdown'
import * as typescript from 'prettier/plugins/typescript'
import * as yaml from 'prettier/plugins/yaml'
// @ts-expect-error
import * as estree from 'prettier/plugins/estree'
import { globby } from 'globby'
import { format } from 'prettier/standalone'
Expand Down Expand Up @@ -39,6 +38,7 @@ export class Formatter {
const output = await format(input, {
...config,
filepath: filename,
// @ts-expect-error any
plugins: [estree, yaml, markdown, graphql, babel, typescript, plugin],
})

Expand Down

0 comments on commit b5fe459

Please sign in to comment.