ultracite 4.0.3 → 4.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +16 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -26,7 +26,7 @@ code --install-extension bradlc.vscode-tailwindcss
26
26
 
27
27
  ## Setup
28
28
 
29
- Create an `biome.json` with the following contents:
29
+ Create a `biome.json` with the following contents:
30
30
 
31
31
  ```json
32
32
  { "extends": ["ultracite"] }
@@ -44,6 +44,21 @@ Ultracite is designed to be used with [VS Code](https://code.visualstudio.com/).
44
44
  "editor.codeActionsOnSave": {
45
45
  "quickfix.biome": "explicit",
46
46
  "source.organizeImports.biome": "explicit"
47
+ },
48
+ "[typescript]": {
49
+ "editor.defaultFormatter": "biomejs.biome"
50
+ },
51
+ "[json]": {
52
+ "editor.defaultFormatter": "biomejs.biome"
53
+ },
54
+ "[javascript]": {
55
+ "editor.defaultFormatter": "biomejs.biome"
56
+ },
57
+ "[jsonc]": {
58
+ "editor.defaultFormatter": "biomejs.biome"
59
+ },
60
+ "[typescriptreact]": {
61
+ "editor.defaultFormatter": "biomejs.biome"
47
62
  }
48
63
  }
49
64
  ```
package/package.json CHANGED
@@ -38,5 +38,5 @@
38
38
  "type": "git",
39
39
  "url": "git+https://github.com/haydenbleasel/ultracite.git"
40
40
  },
41
- "version": "4.0.3"
41
+ "version": "4.0.5"
42
42
  }