File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ migrate = "alembic upgrade head"
5252"migrate-down" = " alembic downgrade -1"
5353
5454# Linting & Formatting
55- lint = " ruff check ."
55+ lint = " ruff check --fix --unsafe-fixes ."
5656format = " ruff format ."
5757check = [" lint" , " format" ]
5858
Original file line number Diff line number Diff line change 88 "dev" : " next dev --turbopack" ,
99 "build" : " next build" ,
1010 "start" : " next start" ,
11- "lint" : " biome check src" ,
12- "format" : " biome check --write src" ,
13- "check" : " biome check --write src" ,
11+ "lint" : " biome check --write --unsafe --error-on-warnings src" ,
12+ "format" : " biome check --write --unsafe src" ,
1413 "typecheck" : " tsc --noEmit" ,
1514 "test" : " vitest run" ,
1615 "test:watch" : " vitest" ,
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ managed = true
2929[tool .poe .tasks ]
3030dev = " fastapi dev src/main.py --port 8080"
3131start = " fastapi run src/main.py --port 8080"
32- lint = " ruff check ."
32+ lint = " ruff check --fix --unsafe-fixes ."
3333format = " ruff format ."
3434check = [" lint" , " format" ]
3535typecheck = " mypy src"
You can’t perform that action at this time.
0 commit comments