Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
37 changes: 37 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"workbench.colorCustomizations": {
"activityBar.background": "#05284A",
"titleBar.activeBackground": "#063867",
"titleBar.activeForeground": "#F8FBFF",
"titleBar.inactiveBackground": "#05284A",
"titleBar.inactiveForeground": "#F8FBFF",
"statusBar.background": "#05284A",
"statusBar.foreground": "#F8FBFF",
"statusBar.debuggingBackground": "#05284A",
"statusBar.debuggingForeground": "#F8FBFF",
"statusBar.noFolderBackground": "#05284A",
"statusBar.noFolderForeground": "#F8FBFF"
},
// }
// {
// Use Prettier for JS-like files
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false
},
// Core Prettier style to resemble paste-2.txt
"prettier.useTabs": false,
"prettier.tabWidth": 2,
"prettier.singleQuote": false,
"prettier.trailingComma": "none",
"prettier.semi": true,
"prettier.bracketSpacing": true,
"prettier.arrowParens": "always",
// Keep lines reasonably narrow so function calls wrap like paste-2.txt
"prettier.printWidth": 80,
// Make sure VS Code actually uses Prettier on save/format
"editor.formatOnSave": false,
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
Loading