See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| { | |
| "workbench.colorTheme": "Dracula", | |
| "terminal.external.linuxExec": "~/.zshrc", | |
| "terminal.integrated.shell.osx": "/bin/zsh", | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontLigatures": true, | |
| "editor.lineHeight": 18, | |
| "editor.formatOnSave": true, | |
| "editor.rulers": [ | |
| 80 |
| #!/usr/bin/env bash | |
| # https://docs.docker.com/install/linux/docker-ce/ubuntu/ | |
| sudo apt-get install apt-transport-https ca-certificates curl software-properties-common | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
| sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" | |
| sudo apt-get update | |
| sudo apt-get install docker.io | |
| # https://docs.docker.com/compose/install/ |
| module.exports = { | |
| env: { | |
| browser: true, | |
| es6: true, | |
| }, | |
| extends: ['airbnb', 'prettier', 'prettier/react'], | |
| globals: { | |
| Atomics: 'readonly', | |
| SharedArrayBuffer: 'readonly', | |
| }, |
| { | |
| "window.zoomLevel": -1, | |
| "workbench.colorTheme": "Dracula", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontSize": 16, | |
| "editor.lineHeight": 24, | |
| "editor.formatOnSave": true, | |
| "editor.rulers": [120], | |
| "editor.tabSize": 2, |
| ------- MODULO 1 - AMBIENTES E CONCEITOS ------- | |
| Frameworks utilizados: | |
| - ExpressJS | |
| - AdonisJS | |
| - NestJS | |
| -- Http Codes -- | |
| 1xx: Informational |