this_chordT
Denoβ€’11mo agoβ€’
6 replies
this_chord

VS Code Deno formatter doesn't read deno.jsonc

I have a deno setup with this config in the root of my project:

{
"fmt": {
"include": ["/*.ts", "/.tsx"],
"exclude": ["**/
.d.ts"],
"lineWidth": 120
}
}


And it formats correctly to 120 max width with deno fmt, but when I use format on save in VS Code with Deno set as my default editor, it uses the default configuration with max width 80. Why is this?
Was this page helpful?