I have a .js file. It begins with the following code:
// --------------------------------------- // Добавочная функция JQuery для изменения value, которая вызывает событие change // --------------------------------------- $.fn.changeVal = function (v) { return $(this).val(v).trigger("change"); } When I open it, PhpStorm hides a comment. It turns out that: 
How do I cancel this? Make it so that he does not hide the comments?