-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prettierrc.json
40 lines (28 loc) · 1.53 KB
/
.prettierrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"_comment": "한 줄이 이 글자수를 넘게 되면 들여쓰기되어 코드가 세로로 정리된다. (default: 80)",
"printWidth": 120,
"_comment":"탭 너비 (default: 2)",
"tabWidth": 3,
"_comment": "탭 사용 여부. 참이면 탭이있는 줄을 들여 쓰기 한다. (default: false)",
"useTabs": false,
"_comment": "세미클론 강제 여부 (default: true)",
"semi": true,
"_comment": "홑따옴표를 쓸건지 설정. 기본값은 쌍따옴표. 코딩을 하면서 홑따옴표를 썼다면 강제로 쌍따옴표로 변경. (default: false)",
"singleQuote": true,
"_comment": "all - 가능하면 후행 쉼표를 붙힘 (함수 인수) ",
"trailingComma": "all",
"_comment": "객체 리터럴 사용시 괄호에 공백 삽입 여부 (default: true)",
"bracketSpacing": true,
"_comment": "JSX의 마지막 `>`를 다음 줄로 내릴지 여부",
"jsxBracketSameLine": true,
"_comment": "단독 화살표 함수의 매개 변수 주위에 괄호를 자동으로 붙힘 (default: 'avoid')",
"arrowParens": "avoid",
"_comment": "vue 파일의 script와 style태그 들여쓰기 여부",
"vueIndentScriptAndStyle": false,
"_comment": "맨마지막 줄 넣는지 여부",
"endOfLine": "auto",
"_comment": "이 확장 기능을 비활성화 할 언어 ID 목록",
"disableLanguages" : ["vue"],
"_comment": "tailwind css 순서정렬 플러그인",
"plugins": ["prettier-plugin-tailwindcss"]
}