Skip to content

Commit e14eaee

Browse files
committed
Merge pull request #1106 from kingcody/fix/line-endings
fix(app): ensure all files end with a newline
2 parents af0ce9b + 8511260 commit e14eaee

File tree

35 files changed

+35
-35
lines changed

35 files changed

+35
-35
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,4 +549,4 @@ Closes #18, #17
549549

550550
#### Features
551551

552-
* **gen:** include MongoDB as an option When selected, sets up database with Mongoose. Repl ([280cc84d](http://github.com/DaftMonk/generator-angular-fullstack/commit/280cc84d735c60b1c261540dceda34dd7f91c93c), closes [#2](http://github.com/DaftMonk/generator-angular-fullstack/issues/2))
552+
* **gen:** include MongoDB as an option When selected, sets up database with Mongoose. Repl ([280cc84d](http://github.com/DaftMonk/generator-angular-fullstack/commit/280cc84d735c60b1c261540dceda34dd7f91c93c), closes [#2](http://github.com/DaftMonk/generator-angular-fullstack/issues/2))

app/templates/.buildignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
*.coffee
1+
*.coffee

app/templates/.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* text=auto
1+
* text=auto

app/templates/.jscs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@
4141
},
4242
"validateLineBreaks": "LF",
4343
"validateParameterSeparator": ", "
44-
}
44+
}

app/templates/.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ before_script:
66
- npm install -g bower grunt-cli<% if (filters.sass) { %>
77
- gem install sass<% } %>
88
- bower install
9-
services: mongodb
9+
services: mongodb

app/templates/client/app/account(auth)/settings/settings(html).html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ <h1>Change Password</h1>
3636
</form>
3737
</div>
3838
</div>
39-
</div>
39+
</div>

app/templates/client/app/admin(auth)/admin(coffee).coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ angular.module '<%= scriptAppName %>'
1212
url: '/admin'
1313
templateUrl: 'app/admin/admin.html'
1414
controller: 'AdminCtrl'
15-
<% } %>
15+
<% } %>

app/templates/client/app/admin(auth)/admin(html).html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
<a ng-click="delete(user)" class="trash"><span class="glyphicon glyphicon-trash pull-right"></span></a>
1010
</li>
1111
</ul>
12-
</div>
12+
</div>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.trash { color:rgb(209, 91, 71); }
1+
.trash { color:rgb(209, 91, 71); }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
.trash
2-
color rgb(209, 91, 71)
2+
color rgb(209, 91, 71)

0 commit comments

Comments
 (0)