This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.fontFamily": "JetBrains Mono", | |
"editor.fontLigatures": true, | |
"editor.rulers": [80, 120], | |
"editor.fontSize": 11, | |
"editor.letterSpacing": 0.4, | |
"editor.smoothScrolling": true, | |
"editor.minimap.enabled": false, | |
"terminal.integrated.fontFamily": "MesloLGS NF", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"import/prefer-default-export": "off", | |
"react/jsx-props-no-spreading": "off", | |
"react/prop-types": "off", | |
"react/jsx-one-expression-per-line": "off", | |
"prettier/prettier": "error", | |
"@typescript-eslint/explicit-function-return-type": "off", | |
"camelcase": "off", | |
"@typescript-eslint/no-unused-vars": "off", | |
"import/extensions": [ | |
"error", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[alias] | |
ad = add . | |
ci = commit -m | |
ps = push origin | |
pu = pull | |
che = checkout | |
lg = log --all --graph --decorate --oneline --abbrev-commit | |
cm = commit | |
ac = !git add -A && git commit | |
st = status -sb |