File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
fern/products/sdks/overview/typescript/changelog Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments