Setting > Code Style > General > Enable formatter markers in comments
で設定可能。
あとはソースコードに@formatter:off
と@formatter:on
を記述する。
@Override
public void configure(WebSecurity web) throws Exception {
// @formatter:off
web
.ignoring()
.antMatchers("/resources/**")
.antMatchers("/setup**")
.antMatchers("/signup**");
// @formatter:on
}
ちなみにIntelliJでソースの自動フォーマットは Ctrl + Alt + l