Skip to content

Commit 31f7e88

Browse files
committed
Initial commit
This should encompas most of what will be the final first version. Most should be working right now.
0 parents  commit 31f7e88

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+2719
-0
lines changed

.editorconfig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
# Tabs in JS unless otherwise specified
13+
[**.js]
14+
indent_style = tab
15+
indent_size = 4
16+
17+
[*.md]
18+
trim_trailing_whitespace = false

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.html eol=lf
2+
*.css eol=lf
3+
*.js eol=lf
4+
*.md eol=lf
5+
*.json eol=lf
6+
*.yml eol=lf

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
lib-cov
2+
*.seed
3+
*.log
4+
*.csv
5+
*.dat
6+
*.out
7+
*.pid
8+
*.gz
9+
*.swp
10+
*.swo
11+
.DS_Store
12+
.idea
13+
14+
# package managers files
15+
node_modules/
16+
bower_components/
17+
npm-debug.log
18+
19+
# test coverage files
20+
.coverage/
21+
22+
# grunt temp files created by grunt-gh-pages and the demo assets
23+
.grunt/
24+
.tmp/

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: node_js
2+
node_js:
3+
- 5.2
4+
5+
before_install:
6+
- export CHROME_BIN=chromium-browser
7+
- export DISPLAY=:99.0
8+
- sh -e /etc/init.d/xvfb start
9+
10+
before_script:
11+
- npm install -g -silent grunt-cli bower
12+
- bower install
13+
14+
env:
15+
- TREE_CI_ENV=travis

0 commit comments

Comments
 (0)