Skip to content

Instantly share code, notes, and snippets.

View tavareshenrique's full-sized avatar
💭
think different.

Henrique Tavares tavareshenrique

💭
think different.
View GitHub Profile
@tavareshenrique
tavareshenrique / README.md
Last active December 17, 2019 13:07
My README.md in English.

Project Title

[PHOTOS]

One Paragraph of project description goes here

Installing & Running

A step by step series of examples that tell you how to get a development env running

@tavareshenrique
tavareshenrique / README.md
Last active December 17, 2019 13:07
My README.md in pt-BR

Título do Projeto

[FOTOS SE POSSÍVEL]

Um parágrafo da descrição do projeto vai aqui

Instalando e Executando

Uma série passo a passo de exemplos que informam como obter um env de desenvolvimento em execução

@tavareshenrique
tavareshenrique / CHANGELOG.md
Created July 17, 2019 02:32
My CHANGELOG.md

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

[1.0.0] - 2017-06-20

Added

@tavareshenrique
tavareshenrique / CONTRIBUTING.md
Created July 17, 2019 02:33
My CONTRIBUTING.md

Contributing

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.

Please note we have a code of conduct, please follow it in all your interactions with the project.

Pull Request Process

  1. Ensure any install or build dependencies are removed before the end of the layer when doing a
@tavareshenrique
tavareshenrique / LICENSE.md
Last active December 17, 2019 12:16
My MIT License

Copyright 2020 Henrique Tavares

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR

@tavareshenrique
tavareshenrique / .eslintrc.js
Created November 30, 2019 20:42
ESLint Configure to React Native
module.exports = {
env: {
es6: true,
},
extends: ['plugin:react/recommended', 'airbnb', 'prettier', 'prettier/react'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
__DEV__: 'readonly',
},
@tavareshenrique
tavareshenrique / settings.json
Last active May 6, 2020 11:55
My Settings from VSCode
{
// Workbench
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "welcomePage",
"workbench.editor.labelFormat": "short",
// Explorer
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
@tavareshenrique
tavareshenrique / .eslintrc.json
Last active April 25, 2020 18:31
ESLint Config TypeScript
{
"env": {
"browser": true,
"es6": true
},
"extends": [
"plugin:react/recommended",
"airbnb",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
@tavareshenrique
tavareshenrique / README.md
Last active May 30, 2020 20:27
My README API Model

{PROJECT_LOGO(300X300)}

Last commit on GitHub Made by Henrique Tavares Project top programing language Repository size

@tavareshenrique
tavareshenrique / maven.yml
Last active May 29, 2020 14:47
Github Actions: Java + Maven
# Aqui é o nome que você pode dar ao processo de CI.
name: Java CI with Maven
on:
push:
# Aqui você diz a partir de qual branch ele irá fazer o processo de CI.
# Nesse caso está configurado no master, ou seja, sempre que o master receber
# um novo commit, será feito a CI.
branches: [ master ]
pull_request: