Passed
Push — master ( 3adf70...d43095 )
by Roeland
15:30 queued 05:03
created

webpack.common.js (3 issues)

1
const core = require('./core/webpack');
2
const files_sharing = require('./apps/files_sharing/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 files_trashbin = require('./apps/files_trashbin/webpack')
4
const files_versions = require('./apps/files_versions/webpack');
5
const oauth2 = require('./apps/oauth2/webpack')
6
const systemtags = require('./apps/systemtags/webpack')
7
8
module.exports = [].concat(
9
	core,
10
	files_sharing,
11
	files_trashbin,
12
	files_versions,
13
	oauth2,
14
	systemtags
15
);
16