You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
526 B
10 lines
526 B
module.exports = {
|
|
singleQuote: true, // 문자열을 ' 작은따옴표로
|
|
printWidth: 100, // 한 줄 최대 길이 (일반적으로 80~120 사이)
|
|
tabWidth: 2, // 탭은 공백 2칸
|
|
semi: true, // 문장 끝에 세미콜론
|
|
trailingComma: 'all', // 객체/배열 마지막에도 항상 콤마
|
|
bracketSpacing: true, // 객체 중괄호 내에 공백 { foo: bar }
|
|
arrowParens: 'always', // 화살표 함수 매개변수 항상 괄호 (a) => ...
|
|
endOfLine: 'auto', // OS에 맞는 줄바꿈 방식
|
|
};
|
|
|