한국공항공사(KAC) - Front End
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.
 
 
 
 

11 lines
468 B

module.exports = {
singleQuote: true, //인용부호 작은 따옴표 사용
semi: true, //모든 문법 끝에 세미콜론 추가
useTabs: false,
tabWidth: 2, //탭 공백 넓이
trailingComma: 'none', //후행 쉼표 제거
printWidth: 80, //줄바꿈 넓이
bracketSpacing: true, // 브라켓 간격
arrowParens: 'avoid', //arrow function 매개변수 하나일때 괄호 제거
jsxSingleQuote: true //jsx 인용부호 작은 따옴표 사용
};