Skip to content

Instantly share code, notes, and snippets.

View feliperodriguess's full-sized avatar
👨‍💻

Felipe Rodrigues feliperodriguess

👨‍💻
  • Florianópolis, Brazil
  • 08:00 (UTC -03:00)
View GitHub Profile
@feliperodriguess
feliperodriguess / reset.css
Last active May 16, 2021 00:18
CSS First Clean Config
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700,800&display=swap');
* {
margin: 0;
padding: 0;
outline: 0;
box-sizing: border-box;
}
body {
root = true
[*]
ident_style = space
ident_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
const { resolve } = require('path');
module.exports = {
env: {
browser: true,
es6: true,
jest: true,
},
globals: {
Atomics: 'readonly',
@feliperodriguess
feliperodriguess / .gitconfig
Last active June 25, 2020 15:20
👾 git alias
[alias]
sync = remote add origin
ci = "!f() { git commit -m \"$*\"; }; f"
co = checkout
cm = checkout master
cb = checkout -b
st = status -sb
sf = show --name-only
ps = push
pom = push origin master -u