See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
Merged from https://github.com/joelparkerhenderson/git_commit_message and https://chris.beams.io/posts/git-commit/
| alias cvpn="echo 'PASSWORD' | sudo openconnect --passwd-on-stdin --reconnect-timeout 1 --servercert sha256:<FINGERPRINT> --authgroup <AUTHGROUP> --user <USER_NAME> <HOST>:<PORT" |
| /((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-z])(?=.*[a-z]).*$/ |
| // Custom variables and bootstrap overrides | |
| @import './assets/styles/variables'; | |
| // Bootstrap | |
| @import '~bootstrap/scss/functions'; | |
| @import '~bootstrap/scss/variables'; | |
| @import '~bootstrap/scss/mixins'; | |
| @import '~bootstrap/scss/root'; | |
| @import '~bootstrap/scss/reboot'; | |
| @import '~bootstrap/scss/type'; |
| dist: xenial | |
| sudo: false | |
| language: node_js | |
| node_js: | |
| - "10" | |
| cache: | |
| directories: | |
| - ./node_modules |
| export type SortDirection = 'asc' | 'desc' | ''; | |
| const rotate: {[key: string]: SortDirection} = { asc: 'desc', desc: '', '': 'asc' }; |
| .table-rounded thead th { | |
| border: none; | |
| } | |
| .table-rounded thead th:first-child { | |
| border-radius: $border-radius 0 0 0; | |
| } | |
| .table-rounded thead th:last-child { | |
| border-radius: 0 $border-radius 0 0; | |
| } |
| function jobCreator(jobTitle) { | |
| return function(prefix) { | |
| return prefix + ' ' + jobTitle; | |
| }; | |
| } | |
| var marketer = jobCreator('Marketer'); | |
| var developer = jobCreator('Developer'); | |
| console.log(marketer('Head')); // Head Marketer |
| function jobCreator(jobTitle) { | |
| return function(prefix) { | |
| return prefix + ' ' + jobTitle; | |
| }; | |
| } | |
| var marketer = jobCreator('Marketer'); | |
| var developer = jobCreator('Developer'); | |
| console.log(marketer('Head')); // Head Marketer |