UNPKG

prettier-eslint

Version:

Formats your JavaScript using prettier followed by eslint --fix

15 lines (10 loc) 297 B
import { analyze, format } from './lib/index.js'; namespace prettierESLint { type Format = typeof format; interface PrettierESLint extends Format { analyze: typeof analyze; format: Format; } } declare const prettierESLint: prettierESLint.PrettierESLint; export = prettierESLint;