Skip to content

Instantly share code, notes, and snippets.

View guipeixoto's full-sized avatar

Guilherme Peixoto guipeixoto

View GitHub Profile
@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"