Nikolas Poniros

Results 35 comments of Nikolas Poniros

In my case the extra line is added by the plugin itself when I use --fix. For example the following code ``` sql` SELECT 1 ` ``` is fixed to...

Depending on how you update you might be able to use http://dexie.org/docs/Table/Table.bulkPut(). http://dexie.org/docs/Table/Table.update() explains the difference between put and update. In case you use table.update you should put the calls...

The default part is normal. `import Dexie from 'dexie'` imports dexie using the default export and the default export is just dexie. Extending it should not be an issue unless...

In my experience a scripts folder containing shell scripts is always a top-level directory. A scripts folder in a subdirectory often contains files meant to be consumed by a browser....

Thanks for the info @hdorgeval. I didn't know that I can ignore files in the config file. Is this option documented in the README? I had an older config file...