Skip to content

Commit

Permalink
CHANGELOG @typescript-eslint/typescript-estree fix
Browse files Browse the repository at this point in the history
Co-authored-by: Christopher J. Brody <chris@brody.consulting>
Co-authored-by: Jed Fox <git@twopointzero.us>
  • Loading branch information
Christopher J. Brody and j-f1 committed Mar 19, 2019
1 parent e3230e5 commit 2d2ae11
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,32 @@ Examples:
-->

- `@typescript-eslint/typescript-estree` version `1.4.2` update to preserve generics in object methods ([#5989] by [@brodybits])

<!-- prettier-ignore -->
```ts
// Input
export default {
load<K, T>(k: K, t: T) {
return {k, t};
}
}

// Output (Prettier stable)
export default {
load(k: K, t: T) {
return {k, t};
}
}

// Output (Prettier master)
export default {
load<K, T>(k: K, t: T) {
return {k, t};
}
}
```

- Config: Support shared configurations ([#5963] by [@azz])

Sharing a Prettier configuration is simple: just publish a module that exports a configuration object, say `@company/prettier-config`, and reference it in your `package.json`:
Expand Down

0 comments on commit 2d2ae11

Please sign in to comment.