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
/* ========================================================================== | |
Create the bundles | |
========================================================================== */ | |
import gutil from 'gulp-util'; | |
import webpack from 'webpack'; | |
import webpackConfig from '../config/webpack.config'; | |
function bundle(options) { | |
const compiler = webpack(webpackConfig(options)); |
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
[user] | |
name = John Doe | |
email = [email protected] | |
[Alias] | |
st = status | |
ci = commit | |
cl = clone | |
br = branch | |
co = checkout | |
df = diff |
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
/** | |
* Default configuration to lint | |
* the airbnb css style-guide. | |
* This file is taken from a pull request to Airbnb/css repo | |
* which intends to create a default preset that can be used | |
* in the future. Until it is merged, we will have the config here. | |
* https://github.com/airbnb/css/pull/23 | |
* Add more rules: http://stylelint.io/user-guide/rules/ | |
* Also, to understand better who the rules are named: | |
* http://stylelint.io/user-guide/about-rules/ |
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 assemble from 'assemble'; | |
import assembleConfig from '../config/assemble-config.js'; | |
import markdownHelper from 'helper-markdown'; | |
import helpers from 'handlebars-helpers'; | |
import hbs from 'engine-handlebars'; | |
import gutil from 'gulp-util'; | |
import platformConfig from '../config/platform-config.js'; | |
import yaml from 'js-yaml'; | |
import fs from 'fs'; | |
import collections from 'assemble-collections'; |
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
{ | |
"remove-empty-rulesets": true, | |
"always-semicolon": true, | |
"color-case": "lower", | |
"block-indent": " ", | |
"color-shorthand": false, | |
"element-case": "lower", | |
"eof-newline": true, | |
"leading-zero": true, | |
"quotes": "double", |
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
#======= Config to see git branch in the prompt | |
#===== get current git branch name | |
function git_branch { | |
export gitbranch=[$(git rev-parse --abbrev-ref HEAD 2>/dev/null)] | |
if [ "$?" -ne 0 ] | |
then gitbranch= | |
fi | |
if [[ "${gitbranch}" == "[]" ]] |
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] | |
st = status | |
ci = commit | |
cl = clone | |
br = branch | |
co = checkout | |
df = diff | |
dc = diff --cached | |
#resets | |
rh = reset --hard |
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
# Browsers | |
Firefox developer | |
chrome canary | |
Firefox | |
chrome | |
# Tools | |
Virtual Box - Modern IE | |
xcode |
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
grunt gulp babel bower grunt-cli csslint eslint generator-generator grunt-init gulp-cli jscs jshint jsxhint mocha mocha-phantomjs node-inspector node-static purify-css scss-lint underscore lodash vorlon webpack webpack-dev-server yo node-scss-lint sass scss-lint |