Passed
Push — master ( 82625e...0becd8 )
by Roeland
13:21
created

webpack.common.js (4 issues)

1
const core = require('./core/webpack')
0 ignored issues
show
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...
2
const settings = require('./settings/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
const accessibility = require('./apps/accessibility/webpack')
5
const files_sharing = require('./apps/files_sharing/webpack')
6
const files_trashbin = require('./apps/files_trashbin/webpack')
7
const files_versions = require('./apps/files_versions/webpack')
8
const oauth2 = require('./apps/oauth2/webpack')
9
const systemtags = require('./apps/systemtags/webpack')
10
const updatenotifications = require('./apps/updatenotification/webpack')
11
12
module.exports = [].concat(
13
	core,
14
	settings,
15
	accessibility,
16
	files_sharing,
17
	files_trashbin,
18
	files_versions,
19
	oauth2,
20
	systemtags,
21
	updatenotifications
22
);
23