Skip to content

Instantly share code, notes, and snippets.

View hericke47's full-sized avatar
🚀
Focusing

Herick Exterkoetter hericke47

🚀
Focusing
  • Tubarão Santa Catarina
View GitHub Profile
<h1 >Herick Exterkoetter</h1>
<p >Self-taught Developer. Enthusiast of web and mobile development technologies.</p>
<p>Passionate about education and teaching about programming.</p>
<h1>Connect with me:</h1>
[![Linkedin Badge](https://img.shields.io/badge/-Herick%20Exterkoetter-6633cc?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/herick-exterkoetter-197496195/)](https://www.linkedin.com/in/herick-exterkoetter-197496195/)
[![Gmail Badge](https://img.shields.io/badge/[email protected]?style=flat-square&logo=Gmail&logoColor=white&link=mailto:[email protected])](mailto:[email protected])
---
@hericke47
hericke47 / gist:85f1fe4141af3df2113a32ef5c038f4a
Last active February 21, 2022 11:24
Configurações terminal Hyper
"use strict";
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
{
"env": {
"browser": true,
"es6": true
},
"extends": [
"plugin:react/recommended",
"airbnb",
"plugin:@typescript-eslint/recommended",
"prettier",
@hericke47
hericke47 / tsconfig.json
Created September 12, 2020 13:29
TsConfig
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
@hericke47
hericke47 / .prettierrc
Last active June 30, 2021 14:42
Prettier
module.exports = {
singleQuote: true,
trailingComma: 'es5',
bracketSpacing: true,
tabWidth: 2,
useTabs: true,
printWidth: 80,
tabWidth: 0,
arrowParens: "always",
requirePragma: true
@hericke47
hericke47 / .editorconfig
Created September 12, 2020 13:28
EditorConfig
root = true
[*]
indent_size = 2
indent_style = space
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
@hericke47
hericke47 / .eslintrc.json
Last active September 12, 2020 13:29
Eslint ReactJs
{
"env": {
"browser": true,
"es6": true,
"jest": true
},
"extends": [
"plugin:react/recommended",
"airbnb",
"plugin:@typescript-eslint/recommended",
@hericke47
hericke47 / settings.json
Last active December 26, 2023 15:11
Config VsCode
{
"terminal.integrated.fontSize": 14,
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,
"editor.fontSize": 18,
"editor.lineHeight": 26,
"editor.fontLigatures": true,