-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Madhuka/milestone-01
Merge Milestone 01
- Loading branch information
Showing
49 changed files
with
2,383 additions
and
156 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"directory": "bower_components" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
|
||
[*] | ||
|
||
# Change these settings to your own preference | ||
indent_style = space | ||
indent_size = 2 | ||
draw_white_space = all | ||
|
||
# We recommend you to keep these unchanged | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
node_modules | ||
dist | ||
.tmp | ||
.sass-cache | ||
bower_components |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"node": true, | ||
"browser": true, | ||
"esnext": true, | ||
"bitwise": true, | ||
"camelcase": true, | ||
"curly": true, | ||
"eqeqeq": true, | ||
"immed": true, | ||
"indent": 2, | ||
"latedef": true, | ||
"newcap": true, | ||
"noarg": true, | ||
"quotmark": "single", | ||
"undef": true, | ||
"unused": true, | ||
"strict": true, | ||
"trailing": true, | ||
"smarttabs": true, | ||
"globals": { | ||
"angular": false | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
sudo: false | ||
language: node_js | ||
node_js: | ||
- 'iojs' | ||
- '0.12' | ||
- '0.10' | ||
before_script: | ||
- 'npm install -g bower grunt-cli' | ||
- 'bower install' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
"generator-gulp-angular": { | ||
"version": "0.11.0", | ||
"props": { | ||
"angularVersion": "~1.3.4", | ||
"angularModules": [ | ||
{ | ||
"key": "animate", | ||
"module": "ngAnimate" | ||
}, | ||
{ | ||
"key": "touch", | ||
"module": "ngTouch" | ||
} | ||
], | ||
"jQuery": { | ||
"key": "jquery1" | ||
}, | ||
"resource": { | ||
"key": "none", | ||
"module": null | ||
}, | ||
"router": { | ||
"key": "ui-router", | ||
"module": "ui.router" | ||
}, | ||
"ui": { | ||
"key": "bootstrap", | ||
"module": null | ||
}, | ||
"bootstrapComponents": { | ||
"key": "ui-bootstrap", | ||
"module": "ui.bootstrap" | ||
}, | ||
"cssPreprocessor": { | ||
"key": "ruby-sass", | ||
"extension": "scss" | ||
}, | ||
"jsPreprocessor": { | ||
"key": "traceur", | ||
"extension": "js", | ||
"srcExtension": "es6" | ||
}, | ||
"htmlPreprocessor": { | ||
"key": "none", | ||
"extension": "html" | ||
}, | ||
"foundationComponents": { | ||
"name": null, | ||
"version": null, | ||
"key": null, | ||
"module": null | ||
}, | ||
"paths": { | ||
"src": "src", | ||
"dist": "dist", | ||
"e2e": "e2e", | ||
"tmp": ".tmp" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.