Passed
Push — master ( 6c6642...eab46d )
by Roeland
10:57 queued 10s
created

webpack.common.js (6 issues)

1
const core = require('./core/webpack');
0 ignored issues
show
Backwards Compatibility introduced by
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
Loading history...
require does not seem to be defined.
Loading history...
2
const oauth2 = require('./apps/oauth2/webpack')
0 ignored issues
show
Backwards Compatibility introduced by
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
Loading history...
There should be a semicolon.

Requirement of semicolons purely is a coding style issue since JavaScript has specific rules about semicolons which are followed by all browsers.

Further Readings:

Loading history...
require does not seem to be defined.
Loading history...
3
4
module.exports = [].concat(core, oauth2);
0 ignored issues
show
module does not seem to be defined.
Loading history...
5