Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions fern/products/sdks/overview/typescript/changelog/2025-10-21.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## 3.11.0
**`(feat):`** Add `linter` and `formatter` configuration options to configure code linters and formatters for the generated SDK.
- `linter`:
- `biome`: Use Biome as the code linter. This is the default.
- `none`: Do not include a code linter.
- `formatter`:
- `biome`: Use Biome as the code formatter. This is the default.
- `prettier`: Use Prettier as the code formatter.

For consistency, the _package.json_ scripts will always include the following scripts:
- `lint`: Run the configured linter.
- `lint:fix`: Run the configured linter with auto-fix.
- `format`: Run the configured formatter.
- `format:check`: Run the configured formatter in check mode.
- `check`: Run both the linter and formatter in check mode.
- `check:fix`: Run both the linter and formatter with auto-fix.
When the `linter` is set to `none`, `lint` and `lint:fix` scripts will echo a message indicating that no linter is configured.