Describe the bug
I am trying to lint using oxfmt with bun, it is giving me below error
Expected behavior
It should lint it properly without any errors whatsoever
How to reproduce
Create a new vuejs project using bun with oxfmt. And after that try running the lint script as mentioned below. The below scripts are autocreated when a new project is created using bun and oxfmt. It also adds oxlint script for including eslint. It is working with npm but not with bun.
{
"lint": "run-s lint:*",
"lint:oxlint": "oxlint . --fix",
"lint:eslint": "eslint . --fix --cache",
}
the command would be
Describe the bug
I am trying to lint using oxfmt with
bun, it is giving me below errorExpected behavior
It should lint it properly without any errors whatsoever
How to reproduce
Create a new vuejs project using bun with oxfmt. And after that try running the
lintscript as mentioned below. The below scripts are autocreated when a new project is created using bun and oxfmt. It also addsoxlintscript for including eslint. It is working withnpmbut not withbun.{ "lint": "run-s lint:*", "lint:oxlint": "oxlint . --fix", "lint:eslint": "eslint . --fix --cache", }the command would be