prettier SyntaxError: ';' expected.

j_wisdom_h·2023년 11월 30일
0

Error

목록 보기
2/8

1. prettier 실행시 SyntaxError: ';' expected. 가 발생

$ npm run format:fix
prettier --write --ignore-path .gitignore .

styles/globals.css
[error] styles/globals.css: SyntaxError: ';' expected. (2:6)
[error]   1 | html,
[error] > 2 | body {
[error]     |      ^
[error]   3 |   padding: 0;
[error]   4 |   margin: 0;
[error]   5 |   font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu,

2. 해결방법

https://github.com/azz/pretty-quick/issues/23

{
    "trailingComma": "all",
    "semi": false,
    "singleQuote": true,
    "tabWidth": 4,
    "bracketSpacing": true
    //"parser": "typescript" 이걸 삭제하니 정상적으로 작동!!
}
profile
뚜잇뚜잇 FE개발자

0개의 댓글