When using backticks in a JavaScript file such as :
var name = 'Tom';
var greeting = `hello my name is ${name}`;
PhpStorm does all sorts of weird auto-formatting that breaks the file.
Backticks randomly appear or disappear, commenting the rest of the file. I've disabled the 'insert pair quotes' option in Settings but the problem still persists.
Is there a way to disable auto-formatting for backticks in PhpStorm version 2016.1.2?