Skip to content

Commit 9822556

Browse files
Eugene Yaroslavtsevvcapretz
Eugene Yaroslavtsev
authored andcommitted
feat: Improve biome config (#436)
1 parent 94e142a commit 9822556

File tree

3 files changed

+34
-26
lines changed

3 files changed

+34
-26
lines changed

biome.json

-25
This file was deleted.

biome.jsonc

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3+
"vcs": {
4+
"clientKind": "git",
5+
// use .gitignore to ignore files
6+
"useIgnoreFile": true,
7+
// only run on changed files by default (faster, but happy to remove)
8+
"defaultBranch": "main"
9+
},
10+
"organizeImports": {
11+
"enabled": true
12+
},
13+
"formatter": {
14+
"indentStyle": "space",
15+
"indentWidth": 2,
16+
"lineWidth": 80
17+
},
18+
"javascript": {
19+
"formatter": {
20+
"quoteStyle": "single",
21+
"jsxQuoteStyle": "single"
22+
}
23+
},
24+
"linter": {
25+
"enabled": true,
26+
"rules": {
27+
"recommended": true
28+
}
29+
},
30+
"files": {
31+
"ignore": ["pnpm-lock.yaml"]
32+
}
33+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"build": "tsup src/index.ts --format esm,cjs --dts",
2626
"test": "jest",
2727
"test:watch": "jest --watch",
28-
"format:apply": "biome check --apply .",
28+
"format:apply": "biome check --write .",
2929
"format:check": "biome format .",
3030
"format": "biome format --write .",
3131
"lint": "biome check .",

0 commit comments

Comments
 (0)