You need to install eslint and some other config libs.
yarn add eslint prettier eslint-config-prettier eslint-plugin-prettier -D
yarn eslint --init
.eslintrc.js
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
System: Debian/Ubuntu/Fedora. Might work for others as well.
As mentioned here, to update a go version you will first need to uninstall the original version.
To uninstall, delete the /usr/local/go directory by:
| "***************************************************************************** | |
| "" Vim-PLug core | |
| "***************************************************************************** | |
| if has('vim_starting') | |
| set nocompatible " Be iMproved | |
| endif | |
| let vimplug_exists=expand('~/.config/nvim/autoload/plug.vim') | |
| let g:vim_bootstrap_langs = "javascript,php,python,ruby" |
| /** | |
| * Tells you the age from a string date | |
| * | |
| * @param dateString Date in string format ex: "1981/3/27" | |
| * | |
| * @return integer The calculated age | |
| **/ | |
| function getAge( dateString ) { | |
| var today = new Date(); | |
| var birthDate = new Date(dateString); |