You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to run oxlint in windows 11 it does not return anything, it just finishes and that's it. Without any message, I already tried with Node and Bun and the result is the same.
Originally I tried with an Astro app but when going through another TypeScript app (a simple test script), the result is the same. I already tried adding and removing the oxlintrc.json.
The text was updated successfully, but these errors were encountered:
What version of Oxlint are you using?
^0.15.5
What command did you run?
npx oxlint@latest
What does your
.oxlint.json
config file look like?{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["import", "typescript", "unicorn"],
"env": {
"browser": true
},
"globals": {
"foo": "readonly"
},
"settings": {},
"rules": {
"eqeqeq": "warn",
"import/no-cycle": "error"
},
"overrides": [
{
"files": [".test.ts", ".spec.ts"],
"rules": {
"@typescript-eslint/no-explicit-any": "off"
}
}
]
}
What happened?
When I try to run oxlint in windows 11 it does not return anything, it just finishes and that's it. Without any message, I already tried with Node and Bun and the result is the same.
Originally I tried with an Astro app but when going through another TypeScript app (a simple test script), the result is the same. I already tried adding and removing the oxlintrc.json.
The text was updated successfully, but these errors were encountered: