Theme:
- atom-dark-ui
- atom-solarized-dark
- plus custom styles.less rules
(verbose) | |
remark README.md -u remark-lint -r ./.remarkrc | |
(shorthand) | |
remark <file> |
language: node_js | |
node_js: | |
- '6' | |
before_script: # before running scripts | |
- 'npm install' | |
- 'npm install -g grunt-cli' | |
script: # run these scripts | |
- 'grunt nag' | |
- 'grunt test' | |
# whitelist |
#!/bin/sh | |
set -e | |
set -x | |
for package in $(npm -g outdated --parseable --depth=0 | cut -d: -f3) | |
do | |
npm -g install "$package" | |
done |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |