Skip to content

Commit 5335c10

Browse files
chore: release prettier-eslint (#1180)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 2262e7f commit 5335c10

13 files changed

+588
-6
lines changed

.changeset/pink-dogs-clap.md

-5
This file was deleted.

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## 16.4.0
4+
5+
### Minor Changes
6+
7+
- [#1179](https://github.com/prettier/prettier-eslint/pull/1179) [`2262e7f`](https://github.com/prettier/prettier-eslint/commit/2262e7fb1ec8bb68eebca3bbceded6612bb62467) Thanks [@JounQin](https://github.com/JounQin)! - feat: migrate to TypeScript with 100% compatibility
8+
39
## 16.3.2
410

511
### Patch Changes

lib/index.d.ts

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import type { Linter } from 'eslint';
2+
import type { FormatOptions } from './types.ts';
3+
export declare function format(options: FormatOptions): Promise<string>;
4+
export declare function analyze(options: FormatOptions): Promise<{
5+
output: string;
6+
messages: Linter.LintMessage[];
7+
}>;
8+
export type * from './types.js';
9+
export * from './utils.ts';
10+
declare const _default: {
11+
format: typeof format;
12+
analyze: typeof analyze;
13+
};
14+
export default _default;

lib/index.js

+234
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/tsconfig.tsbuildinfo

+1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)