IntelliJ Javascript kodu ile bazı garip biçimlendirme yapar ve nasıl bu şekilde biçimlendirmeyi durdurmak için almak için anlamaya çalışıyorum. Ne zaman birlikte jQuery fonksiyonları zincir, bu gibi otomatik oluşturulan kodu girintiler:
$('#something').focus(function() {
/* Do some stuff */
}).blur(function() {
/* this is where the cursor and closing braces end up */
})
Bunun gibi görünmesini istiyorum:
$('#something').focus(function() {
/* Do some stuff */
}).blur(function() {
/* cursor and closing braces indented normally */
});
Bunu nasıl değiştirebilirim?