VS Code Prettier
Setup .prettierrc file in VS Code :::
{
"overrides": [
{
"files": "*.sol",
"options": {
"tabWidth": 2
}
}
]
}
rules: {
"prettier/prettier": [
"error",
{
endOfLine: "auto",
},
],
}
Solana Dev
Setup .prettierrc file in VS Code to enable code formatting :::
{
"overrides": [
{
"files": "*.sol",
"options": {
"tabWidth": 2
}
}
]
}