Passed
Push — master ( eab46d...3d804e )
by Roeland
12:30
created

webpack.common.js (4 issues)

1
const core = require('./core/webpack');
2
const files_trashbin = require('./apps/files_trashbin/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
const oauth2 = require('./apps/oauth2/webpack')
4
5
module.exports = [].concat(core, files_trashbin, oauth2);
0 ignored issues
show
module does not seem to be defined.
Loading history...
6