View settings.json
{ | |
// Vscode preferences | |
"workbench.colorTheme": "Dracula", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.sideBar.location": "right", | |
"editor.minimap.enabled": false, | |
"terminal.integrated.fontSize": 12, | |
"files.autoSave": "off", | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true, |
View eslint.json
"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", |
View .gitconfig
[push] | |
followTags = true | |
[alias] | |
ad = add . | |
pom = push origin master -u | |
dev = push --set-upstream origin develop | |
ps = push | |
ci = commit -m | |
c = !git add --all && git commit -m | |
co = checkout |