File tree Expand file tree Collapse file tree 5 files changed +13
-3
lines changed
Expand file tree Collapse file tree 5 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ turbo typecheck # Check all packages
2929bun run typecheck # Check single package (from packages/cli)
3030
3131# Linting & Formatting
32- npx ultracite check # Check for issues
33- npx ultracite fix # Auto-fix issues (run before committing)
32+ bun run lint # Check for issues (via turbo)
33+ bun run lint: fix # Auto-fix issues (run before committing)
3434
3535# Testing
3636bun test # Run all tests
Original file line number Diff line number Diff line change 11{
22 "$schema" : " ./node_modules/@biomejs/biome/configuration_schema.json" ,
3- "extends" : [" ultracite/core" ]
3+ "extends" : [" ultracite/core" ],
4+ "javascript" : {
5+ "globals" : [" Bun" ]
6+ }
47}
Original file line number Diff line number Diff line change 22 "name" : " sentry-cli-next" ,
33 "version" : " 0.1.0" ,
44 "private" : true ,
5+ "packageManager" : " bun@1.3.3" ,
56 "description" : " A gh-like CLI for Sentry" ,
67 "workspaces" : [
78 " packages/*"
1011 "dev" : " turbo dev" ,
1112 "build" : " turbo build" ,
1213 "lint" : " turbo lint" ,
14+ "lint:fix" : " turbo lint:fix" ,
1315 "typecheck" : " turbo typecheck"
1416 },
1517 "devDependencies" : {
Original file line number Diff line number Diff line change 1313 "package" : " bun run script/package.ts" ,
1414 "prepublish" : " bun run script/build.ts && bun run script/package.ts" ,
1515 "typecheck" : " tsc --noEmit" ,
16+ "lint" : " bunx ultracite check" ,
17+ "lint:fix" : " bunx ultracite fix" ,
1618 "test" : " bun test" ,
1719 "test:e2e" : " bun test test/e2e"
1820 },
Original file line number Diff line number Diff line change 1212 "lint" : {
1313 "dependsOn" : [" ^lint" ]
1414 },
15+ "lint:fix" : {
16+ "cache" : false
17+ },
1518 "typecheck" : {
1619 "dependsOn" : [" ^typecheck" ]
1720 }
You can’t perform that action at this time.
0 commit comments