- Inicializar o Git na branch
main
- Substituir os "node-boilerplate" pelo nome do repositório / projeto
- Atualizar o README com as informaçoes do projeto
- Atualizar o package.json com as informações do projeto
- Substituir a função foobar por uma do próprio projeto
- Garantir que a versão está 0.0.0 e sem CHANGELOG.md
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
# Useful Regex Expressions | |
[a-z] = letras minúsculas | |
[A-Z] = letras maiúsculas | |
[\d] = números | |
[àèìòùáéíóúâêîôûäëïöüãõ] = letras minúsculas e maiúsculas acentuadas | |
[\p{Letter}] = letras minúsculas e maiúsculas acentuadas e cedilha | |
[ç] = cedilha | |
[`´^~¨] = acentos | |
[.:,;\-_<>=+*!?)(}{|''""\][\\/] = sinais de pontuação |
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
commitMessages=(one "two afd-d" three "Merge branch 'main'") | |
commitRegex="^Merge branch '.*'$" | |
for i in "${commitMessages[@]}" | |
do | |
if [[ $i =~ $commitRegex ]] | |
then | |
echo "Correct" | |
else | |
echo "Incorrect" |
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
@charset "utf-8"; | |
/* CSS Document */ | |
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, and, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, input, textarea, select { | |
background:transparent; | |
border:0; | |
font-size:100%; | |
margin:0; | |
outline:0; | |
padding:0; |
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] | |
editor = \"C:\\Users\\vinic\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe\" --wait | |
[user] | |
name = Vinícius Pereira | |
email = viniciuspsb@gmail.com | |
[alias] | |
c = checkout | |
ft = fetch | |
ftp = fetch --prune |