Skip to content
This repository was archived by the owner on Aug 30, 2021. It is now read-only.

Commit e027f40

Browse files
committed
Add missing newline at the end of text files
On Unix it is common to have a newline at the end of text files.
1 parent c3dea3e commit e027f40

34 files changed

+34
-34
lines changed

.slugignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/app/tests
1+
/app/tests

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ node_js:
44
env:
55
- NODE_ENV=travis
66
services:
7-
- mongodb
7+
- mongodb

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ ENV NODE_ENV development
2626
# Port 3000 for server
2727
# Port 35729 for livereload
2828
EXPOSE 3000 35729
29-
CMD ["grunt"]
29+
CMD ["grunt"]

config/assets/development.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
module.exports = {
44
// Development assets
5-
};
5+
};

config/assets/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ module.exports = {
66
server: ['modules/*/tests/server/**/*.js'],
77
e2e: ['modules/*/tests/e2e/**/*.js']
88
}
9-
};
9+
};

config/env/production.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ module.exports = {
3737
}
3838
}
3939
}
40-
};
40+
};

config/env/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ module.exports = {
4141
}
4242
}
4343
}
44-
};
44+
};

config/lib/socket.io.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ module.exports = function(app, db) {
5858
});
5959

6060
return server;
61-
};
61+
};

fig.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ web:
99
db:
1010
image: mongo
1111
ports:
12-
- "27017:27017"
12+
- "27017:27017"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
'use strict';
22

33
// Use Applicaion configuration module to register a new module
4-
ApplicationConfiguration.registerModule('articles');
4+
ApplicationConfiguration.registerModule('articles');

0 commit comments

Comments
 (0)