Prettier 사용할 디렉토리 이동
npm init -y
npm i -d prettier-plugin-solidity
전역으로 prettierr 설정 되어있으면 안해도 됩니다.
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false,
"explicitTypes": "always",
"semi": true
}
}
]
}
Root 디렉토리의 .vscode 디렉토리를 생성하고 settings.json 파일 생성합니다.
{
"editor.formatOnSave": true,
"solidity.formatter": "prettier", // This is the default so it might be missing.
"[solidity]": {
"editor.defaultFormatter": "JuanBlanco.solidity"
}
}
모두 완료하였으면 Vscode 껏다 킨후 확인합니다.