$ 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,
https://github.com/azz/pretty-quick/issues/23
{
"trailingComma": "all",
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"bracketSpacing": true
//"parser": "typescript" 이걸 삭제하니 정상적으로 작동!!
}