VS Code
How do you get the most out VS Code?
Routine
How much time per week should be dedicated to learning how to extract the most from VS Code?
Revisit:
Extensions
Useful extensions for web devs
- git
- ESLint
- Nextjs Snippets
- Kubernetes
- NX Console
- Stripe
- Snapshot-Tools
- Hardhat Solidity
- Writing Tools
- Pretty TS Errors
Smart Contract Dev
Config
tip
Setup .prettierrc file in VS Code to enable code formatting
{
"overrides": [
{
"files": "*.sol",
"options": {
"tabWidth": 2
}
}
]
}