UNPKG

447 BTypeScriptView Raw
1// Type definitions for eslint-plugin-prettier 3.1
2// Project: https://github.com/prettier/eslint-plugin-prettier
3// Definitions by: Ika <https://github.com/ikatyang>
4// JounQin <https://github.com/JounQin>
5// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
6
7import { Linter, Rule } from 'eslint';
8
9export const configs: {
10 recommended: Linter.Config;
11};
12
13export const rules: {
14 prettier: Rule.RuleModule;
15};