nextcloud /
server
| 1 | const core = require('./core/webpack') |
||
|
0 ignored issues
–
show
|
|||
| 2 | const settings = require('./settings/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...
|
|||
| 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 |
Requirement of semicolons purely is a coding style issue since JavaScript has specific rules about semicolons which are followed by all browsers.
Further Readings: