Confirm that this is a Bug for the editor extension, not the CLI
Versions used
VS Code extension: v1.57.0
oxlint: v1.67.0 (VP: 0.1.24)
oxfmt: v0.52.0 (VP: 0.1.24)
VS Code version: 1.121.0 (Universal)
Operating System and Version: Darwin arm64 25.5.0
Node Version: 22.22.1
Node Manager: vite-plus
What happened?
I have a line where I have double space before Table in my TypeScript file:
import type { Jsonify, RecordId, Surreal, Table, Uuid } from 'surrealdb';
At the same time, my .vsconfig/settings.json has:
"oxc.lint.customization": {
"*": { "severity": "off", "autofix": true },
"@stylistic/*": { "severity": "off" },
"@stylistic/no-multi-spaces": { "severity": "off" },
"@stylistic(no-multi-spaces)": { "severity": "off" },
"oxc(@stylistic(no-multi-spaces))": { "severity": "off" }
},
However, I get error underline, and not a warning one:

I also tried "warning", "hint" and "info", but nothing works.
ESLint, at the same time, was allowing me to do this:
"eslint.rules.customizations": [
{
"rule": "*",
"severity": "error"
},
{
"rule": "@stylistic/*",
"severity": "off"
},
And it was working flawlessly.
The DX I am trying to achieve is not reporting (seeing) things that will auto-fix for me
Confirm that this is a Bug for the editor extension, not the CLI
Versions used
What happened?
I have a line where I have double space before
Tablein my TypeScript file:At the same time, my
.vsconfig/settings.jsonhas:However, I get error underline, and not a warning one:

I also tried "warning", "hint" and "info", but nothing works.
ESLint, at the same time, was allowing me to do this:
And it was working flawlessly.
The DX I am trying to achieve is not reporting (seeing) things that will auto-fix for me