File tree 3 files changed +34
-26
lines changed
3 files changed +34
-26
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change 25
25
"build" : " tsup src/index.ts --format esm,cjs --dts" ,
26
26
"test" : " jest" ,
27
27
"test:watch" : " jest --watch" ,
28
- "format:apply" : " biome check --apply ." ,
28
+ "format:apply" : " biome check --write ." ,
29
29
"format:check" : " biome format ." ,
30
30
"format" : " biome format --write ." ,
31
31
"lint" : " biome check ." ,
You can’t perform that action at this time.
0 commit comments