This is the repository powering vicvijayakumar.com.
We would like you to follow the standard commit format.
This project uses Prettier for very opinionated code formatting, and the Airbnb JavaScript style guide for code quality. If you use Visual Studio Code, we request that you install the ESLint (dbaeumer.vscode-eslint
) and Prettier - Code formatter (esbenp.prettier-vscode
) extensions.
To open settings.json, type Cmd-Shift-P on a Mac and click Preferences: Open Settings (JSON)
. Here's an example recommended settings.json file:
{
"editor.formatOnSave": false,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"[markdown]": {
"files.trimTrailingWhitespace": false
},
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
}
}
This site uses a modified version of astro-theme-cactus.