Skip to content

Commit 4348677

Browse files
Update changelogs from fern repo (#1359)
Co-authored-by: Swimburger <[email protected]>
1 parent 54141f0 commit 4348677

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## 3.11.0
2+
**`(feat):`** Add `linter` and `formatter` configuration options to configure code linters and formatters for the generated SDK.
3+
- `linter`:
4+
- `biome`: Use Biome as the code linter. This is the default.
5+
- `none`: Do not include a code linter.
6+
- `formatter`:
7+
- `biome`: Use Biome as the code formatter. This is the default.
8+
- `prettier`: Use Prettier as the code formatter.
9+
10+
For consistency, the _package.json_ scripts will always include the following scripts:
11+
- `lint`: Run the configured linter.
12+
- `lint:fix`: Run the configured linter with auto-fix.
13+
- `format`: Run the configured formatter.
14+
- `format:check`: Run the configured formatter in check mode.
15+
- `check`: Run both the linter and formatter in check mode.
16+
- `check:fix`: Run both the linter and formatter with auto-fix.
17+
When the `linter` is set to `none`, `lint` and `lint:fix` scripts will echo a message indicating that no linter is configured.
18+
19+

0 commit comments

Comments
 (0)