Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjohnson committed May 31, 2018
0 parents commit 9878925
Show file tree
Hide file tree
Showing 221 changed files with 25,637 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Browsers that we support
# Based off of https://github.com/browserslist/browserslist
# Used for Autoprefixer and Babel

last 4 versions
> 1%
IE 10
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# editorconfig.org

root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
end_of_line = lf
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[{package,bower}.json]
indent_style = space
indent_size = 2
157 changes: 157 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,157 @@
# A .gitignore file tells git which files not to include or version track in your repository.
# Usually, these are silly things like ".DS_Store" or "Thumbs.db".
# We've included a list of the most common files we don't want to version track here.
# Much credit goes to: https://github.com/github/gitignore

### OSX ###
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

### Mixture ###
models
templates

### Windows ###
# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk


### SVN ###
.svn/


### Sass ###
.sass-cache


### Ignore all source map files ###
*.map


### SublimeText ###
# cache files for sublime text
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache

# workspace files are user-specific
*.sublime-workspace

# project files should be checked into the repository, unless a significant
# proportion of contributors will probably not be using SublimeText
# *.sublime-project

# sftp configuration file
sftp-config.json


### TextMate ###
*.tmproj
*.tmproject
tmtags


### Node ###
# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
node_modules

### grunt ###
# Grunt usually compiles files inside this directory
dist/

# Grunt usually preprocesses files such as coffeescript, compass... inside the .tmp directory
.tmp/


### Dreamweaver ###
# DW Dreamweaver added files
_notes
dwsync.xml


### Bower ###
bower_components

### CSS output files ###
scss/5-css-output
stylesheets/css-output

### CodeKit ###
# General CodeKit files to ignore
/min

### Exclude video and audio from Git ###
# These files should be uploaded to the Files page in your site
*.mp4
*.m4v
*.mov
*.ogv
*.flv
*.swf
*.webm
*.asf
*.avi
*.wav
*.mp3
*.aac
*.wma
Loading

0 comments on commit 9878925

Please sign in to comment.