Skip to content

Instantly share code, notes, and snippets.

View guipeixoto's full-sized avatar

Guilherme Peixoto guipeixoto

View GitHub Profile
@guipeixoto
guipeixoto / settings.json
Last active May 14, 2020 13:14
File configuration for editor Visual Studio Code
{
"workbench.colorTheme": "Dracula", // define o tema do VSCode
"workbench.iconTheme": "material-icon-theme", // define o tema de ícones na sidebar
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.labelFormat": "medium",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", // define o bash como default para terminal
"terminal.integrated.fontSize": 15, // define tamanho da fonte do terminal
// configurações do editor
"editor.tabSize": 2, // o tab sendo 2 espaços e não 4 como por padrão
"editor.suggestSelection": "first",
@guipeixoto
guipeixoto / .gitconfig
Last active June 22, 2021 20:36
File configuration Git
[user]
email = guilheme_peixoto_@hotmail.com
name = Guilherme Peixoto
[push]
defaul = current
[pull]
default = current
@guipeixoto
guipeixoto / .editorconfig
Last active April 21, 2020 03:09
.editorconfig file configuration for airbnb standard
root = true
[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
end_of_line = lf
max_line_length = null
@guipeixoto
guipeixoto / .prettierrc
Last active April 21, 2020 05:46
.prettierrc file configuration for airbnb standard
{
"singleQuote": true,
"tabWidth": 2,
"semi": true,
"jsxSingleQuote": true,
"endOfLine": "lf",
"trailingComma": "all",
"arrowParens": "avoid"
}
@guipeixoto
guipeixoto / .eslintrc.json-node
Last active May 3, 2020 17:49
.eslintrc.json file configuration for airbnb standard
{
"env": {
"es6": true,
"node": true
},
"extends": [
"airbnb-base",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"