Skip to content

Commit 07360be

Browse files
committed
Fix eslint
1 parent 21658ec commit 07360be

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ module.exports = {
2929
'.eslintrc.js',
3030
'.template-lintrc.js',
3131
'ember-cli-build.js',
32+
'fastboot.js',
3233
'testem.js',
3334
'blueprints/*/index.js',
3435
'config/**/*.js',

config/environment.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,7 @@ module.exports = function(environment) {
2323
// when it is created
2424
},
2525
fastboot: {
26-
hostWhitelist: [
27-
'crates.io',
28-
/^localhost:\d+$/,
29-
/\.herokuapp\.com$/
30-
],
26+
hostWhitelist: ['crates.io', /^localhost:\d+$/, /\.herokuapp\.com$/],
3127
},
3228
};
3329

fastboot.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
'use strict';
2+
13
const FastBootAppServer = require('fastboot-app-server');
24

35
let server = new FastBootAppServer({
4-
distPath: 'dist',
5-
port: 9000
6+
distPath: 'dist',
7+
port: 9000,
68
});
79

810
server.start();

0 commit comments

Comments
 (0)