owncloud /
mail
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 1 | /** |
||
| 2 | * ownCloud - Mail |
||
| 3 | * |
||
| 4 | * This file is licensed under the Affero General Public License version 3 or |
||
| 5 | * later. See the COPYING file. |
||
| 6 | * |
||
| 7 | * @author Christoph Wurst <[email protected]> |
||
| 8 | * @copyright Christoph Wurst 2015 |
||
| 9 | */ |
||
| 10 | |||
| 11 | ({ |
||
| 12 | baseUrl: 'js', |
||
| 13 | mainConfigFile: 'js/require_config.js', |
||
| 14 | name: 'app', |
||
| 15 | out: 'js/mail.min.js', |
||
| 16 | insertRequire: [ |
||
| 17 | 'app', |
||
| 18 | 'notification' |
||
| 19 | ] |
||
| 20 | }) |
||
|
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...
|
|||
| 21 |
This error message can for example pop up if you forget to assign the result of a function call to a variable or pass it to another function: