emoji | code | description |
---|---|---|
🎨 | :art: |
Improve structure / format of the code. |
⚡️ | :zap: |
Improve performance. |
🔥 | :fire: |
Remove code or files. |
🐛 | :bug: |
Fix a bug. |
🚑 | :ambulance: |
Critical hotfix. |
✨ | :sparkles: |
Introduce new features. |
📝 | :pencil: |
Write docs. |
🚀 | :rocket: |
Deploy stuff. |
This file contains hidden or 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
node_modules |
This file contains hidden or 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
{ | |
"env": { | |
"browser": true, | |
"es2020": true, | |
"node": true, | |
"jest": true | |
}, | |
"extends": [ | |
"plugin:react/recommended", | |
"standard", |
This file contains hidden or 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
module.exports = { | |
semi: false, | |
singleQuote: true, | |
arrowParens: 'avoid', | |
trailingComma: 'none', | |
endOfLine: 'auto' | |
}; |
This file contains hidden or 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
[ | |
{ value: 'AC', label: 'Acre' }, | |
{ value: 'AL', label: 'Alagoas' }, | |
{ value: 'AP', label: 'Amapá' }, | |
{ value: 'AM', label: 'Amazonas' }, | |
{ value: 'BA', label: 'Bahia' }, | |
{ value: 'CE', label: 'Ceará' }, | |
{ value: 'DF', label: 'Distrito Federal' }, | |
{ value: 'ES', label: 'Espírito Santo' }, | |
{ value: 'GO', label: 'Goiás' }, |
This file contains hidden or 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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to NVM | |
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/diego/.oh-my-zsh" |
This file contains hidden or 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
version: 2.1 | |
orbs: | |
node: circleci/[email protected] | |
jobs: | |
build-and-test: | |
executor: | |
name: node/default | |
steps: |
This file contains hidden or 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
{ | |
"above": "{{field}} deve ser acima de {{argument.0}}.", | |
"accepted": "{{field}} deve ter sido aceito", | |
"after": "{{field}} deve ser uma data após {{argument.0}}", | |
"after_offset_of": "{{field}} deve ser mais recente que {{argument.0}} {{argument.1}} a partir da data atual", | |
"alpha": "{{field}} deve conter apenas letras", | |
"alpha_numeric": "{{field}} deve conter apenas letras e números", | |
"array": "{{field}} deve ser um ARRAY.", | |
"before": "{{field}} deve ser uma data anterior a {{argument.0}}.", | |
"before_offset_of": "{{field}} deve ser aterior a {{argument.0}} {{argument.1}} a partir da data de hoje", |