This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"extends": ["next/core-web-vitals", "plugin:prettier/recommended"], | |
"plugins": ["import-helpers"], | |
"rules": { | |
"import-helpers/order-imports": [ | |
"warn", | |
{ | |
"newlinesBetween": "always", | |
"groups": [ | |
"module", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"env": { | |
"es2021": true, | |
"node": true, | |
"jest": true | |
}, | |
"extends": [ | |
"airbnb-base", | |
"plugin:@typescript-eslint/recommended", | |
"plugin:prettier/recommended" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"env": { | |
"browser": true, | |
"es2021": true | |
}, | |
"extends": [ | |
"plugin:react-hooks/recommended", | |
"plugin:react/recommended", | |
"airbnb", | |
"plugin:@typescript-eslint/recommended", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# editor | |
vscode | |
.vscode | |
# dependencies | |
**/node_modules | |
# testing | |
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[core] | |
excludesfile = ~/.gitignore_global | |
editor = vim | |
[color "status"] | |
added = green | |
changed = yellow | |
untracked = red | |
[color "branch"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install ubuntu-restricted-extras | |
sudo apt install python3-pip | |
sudo apt install curl | |
sudo apt install gzip | |
sudo apt install fonts-firacode | |
sudo apt install git | |
sudo apt install docker-ce | |
sudo apt install docker-ce-cli | |
sudo apt install gdebi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yarn add eslint prettier -D | |
/* NEXT */ - (dont need to install eslint) | |
yarn add eslint-plugin-import-helpers@latest eslint-config-prettier eslint-plugin-prettier -D | |
/* REACT */ | |
yarn add eslint-plugin-react@^7.21.5 eslint-config-airbnb@latest eslint-plugin-import@^2.25.2 eslint-plugin-import-helpers@latest eslint-import-resolver-typescript eslint-plugin-jsx-a11y@^6.4.1 eslint-plugin-react-hooks@^4 @typescript-eslint/eslint-plugin@latest @typescript-eslint/parser@latest eslint-config-prettier eslint-plugin-prettier -D | |
/* NODE */ | |
yarn add eslint-config-airbnb-base@latest eslint-plugin-import@^2.25.2 eslint-plugin-import-helpers@latest eslint-import-resolver-typescript @typescript-eslint/eslint-plugin@latest @typescript-eslint/parser@latest eslint-config-prettier eslint-plugin-prettier -D |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
code --install-extension dbaeumer.vscode-eslint | |
code --install-extension eamodio.gitlens | |
code --install-extension ecmel.vscode-html-css | |
code --install-extension EditorConfig.EditorConfig | |
code --install-extension esbenp.prettier-vscode | |
code --install-extension styled-components.vscode-styled-components | |
code --install-extension mikestead.dotenv | |
code --install-extension ms-azuretools.vscode-azurefunctions ** | |
code --install-extension ms-azuretools.vscode-azureresourcegroups ** | |
code --install-extension ms-azuretools.vscode-docker ** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "ctrl+shift+d", | |
"command": "-workbench.view.debug", | |
"when": "viewContainer.workbench.view.debug.enabled" | |
}, | |
{ | |
"key": "ctrl+shift+d", | |
"command": "editor.action.duplicateSelection" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"window.menuBarVisibility": "toggle", | |
"window.zoomLevel": 0, | |
"workbench.colorTheme": "Aura Dark", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.editor.labelFormat": "short", | |
"workbench.editor.wrapTabs": true, | |
"workbench.productIconTheme": "fluent-icons", |
NewerOlder