I'm pretty new to coding & using VS Code / Prettier
I'm trying to turn on strict mode in my JS code, using "use strict";
when I save my file, Prettier formats the code from "use strict"
to ('use strict')
;
which then as far as I can see means strict mode isn't initialised. I couldn't find anyone else talking about this problem online anywhere, so wonder if anyone could shed any light on it?