본문 바로가기
IDE/IntelliJ IDEA

인텔리제이 활용6 - 코드포맷

by 가시죠 2021. 1. 18.
반응형

인텔리제이 활용6 - 코드포맷

IntelliJ IDEA는 코드를 작성하는 도중에 방해가 되지 않는 선에서 최대한 스페이스나 들여쓰기를 정리해준다.

단축키 : Ctrl+Alt+L

기존 소스코드

function whoBigger(args1, args2) {
    var b = args1 > args2;
    if (b) {return args1
    } else {return args2
    }
    console.log(b);
}

 

Ctlr+Alt+L 입력 후 소스코드

function whoBigger(args1, args2) {
    var b = args1 > args2;
    if (b) {
        return args1
    } else {
        return args2
    }
    console.log(b);
}

 

코드포맷은 Preferences 다이얼로그의 Editor -> Code Style에서 상세 수정이 가능하다.

 

반응형

댓글