ultracite 4.1.13 → 4.1.15
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.
- package/README.md +4 -1
- package/package.json +1 -1
- package/scripts/run.mjs +2 -4
package/README.md
CHANGED
|
@@ -29,7 +29,10 @@ code --install-extension bradlc.vscode-tailwindcss
|
|
|
29
29
|
Create a `biome.json` with the following contents:
|
|
30
30
|
|
|
31
31
|
```json
|
|
32
|
-
{
|
|
32
|
+
{
|
|
33
|
+
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
|
|
34
|
+
"extends": ["ultracite"]
|
|
35
|
+
}
|
|
33
36
|
```
|
|
34
37
|
|
|
35
38
|
Ultracite is designed to be used with [VS Code](https://code.visualstudio.com/). Create a `.vscode/settings.json` file with the following contents to enable full formatting and fixing on save:
|
package/package.json
CHANGED
package/scripts/run.mjs
CHANGED
|
@@ -2,14 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
import { execSync } from 'node:child_process';
|
|
4
4
|
import { Command } from 'commander';
|
|
5
|
-
import packageJson from '../package.json' assert { type: 'json' };
|
|
6
5
|
|
|
7
6
|
const program = new Command();
|
|
8
7
|
|
|
9
8
|
program
|
|
10
|
-
.name(
|
|
11
|
-
.description(
|
|
12
|
-
.version(packageJson.version);
|
|
9
|
+
.name('Ultracite')
|
|
10
|
+
.description('Strict, opinionated linting config for modern TypeScript apps.');
|
|
13
11
|
|
|
14
12
|
program
|
|
15
13
|
.command('lint')
|