Skip to content

Commit ce0a732

Browse files
fix: execute eslint and prettier via bun in mise tasks
Co-authored-by: lucasew <15693688+lucasew@users.noreply.github.com>
1 parent dde02ca commit ce0a732

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

mise.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ bun = "1.3.8"
44
[tasks]
55
install = "bun install"
66
codegen = "bun run paraglide:compile"
7-
"lint:eslint" = "eslint ."
8-
"lint:prettier" = "prettier --check ."
7+
"lint:eslint" = "bun eslint ."
8+
"lint:prettier" = "bun prettier --check ."
99
"lint:check" = "bun run check"
1010
lint = { depends = ["lint:*"] }
11-
"fmt:prettier" = "prettier --write ."
11+
"fmt:prettier" = "bun prettier --write ."
1212
fmt = { depends = ["fmt:*"] }
1313
build = "bun run build"
1414
test = "echo 'No tests found'"

0 commit comments

Comments
 (0)