Open ynhhoJ opened 3 weeks ago
When I run manually bunx biome lint --fix
, line: let test = 'some string'
is correctly changed to const test = "some string";
P.S:
biome.json
:
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"ignore": []
},
"formatter": {
"enabled": true,
"indentStyle": "tab"
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"useConst": "error"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
}
}
settings.json
const { href, title, body } = Astro.props; +const test = "some string";
Biome Version:
1.9.4
Zed Version:0.159.7
Plugin Version:0.1.3