sgwilym / nova-deno

A Deno extension for Nova.
https://extensions.panic.com/extensions/co.gwil/co.gwil.deno/
MIT License
13 stars 1 forks source link

The plugin doesn't seem to be loading my deno.json file #43

Closed davidbdyer closed 1 year ago

davidbdyer commented 1 year ago

The plugin doesn't seem to be loading my deno.json file from the root of my project directory. I really don't like using double qoutes in my JS files.

{
  "options": {
     "singleQuote": true,
  }
}
sgwilym commented 1 year ago

What you have is not quite a valid deno.json. Fortunately you can fix this yourself:

{ 
  "fmt": {
    "options": {
       "singleQuote": true,
    }
  }
}
davidbdyer commented 1 year ago

Thank you, I knew it had to be something super simple that my eyes glossed over.