Prettier
Code Formatter ซึ่งช่วยให้คุณสามารถจัดรูปแบบ Code ให้ดูเป็นระเบียบสวยงามยิ่งขึ้น
install
โดยที่ใช้ config ของ eslint airbnb แต่จะปิดการทำงานส่วน eslint ไป
npm install --save-dev prettier
touch .prettierrc
touch .prettierignorePrettier setting
#.prettierrc
{
"printWidth": 100,
"singleQuote": true
}Ingore file
#.prettierignore
build
coverageทำให้ Fotmat ทุกครั้งเมื่อ Save
#vscode/settings.json:
{
"editor.formatOnSave": true
}Last updated