editorconfig 프로필 인 스 턴 스

fxm 5547 에 처음 발 표 된 블 로그
.editorconfig 파일 예제
.editorconfig 는 통 일 된 규범 을 제정 할 수 있 는 프로필 로 대부분의 코드 편집기 가 지원 합 니 다.
# http://editorconfig.org

# A special property that should be specified at the top of the file outside of
# any sections. Set to true to stop .editor config file search on current file
root = true

[*]
# Indentation style
# Possible values - tab, space
indent_style = space

# Indentation size in single-spaced characters
# Possible values - an integer, tab
indent_size = 2

# Line ending file format
# Possible values - lf, crlf, cr
end_of_line = lf

# File character encoding
# Possible values - latin1, utf-8, utf-16be, utf-16le
charset = utf-8

# Denotes whether to trim whitespace at the end of lines
# Possible values - true, false
trim_trailing_whitespace = true

# Denotes whether file should end with a newline
# Possible values - true, false
insert_final_newline = true

좋은 웹페이지 즐겨찾기