Issues (149)

js/module/siteapp.plugin.js (1 issue)

Labels
Severity
1
/**
2
 * [Siteapp] - multi-purpose frontend application
3
 * 
4
 * Siteapp Plugin Abstract
5
 * 
6
 * alias class for Siteapp.Module
7
 *     
8
 * @package     [Siteapp]
9
 * @subpackage  [Siteapp] module
10
 * @author      Björn Bartels <[email protected]>
11
 * @link        https://gitlab.bjoernbartels.earth/groups/themes
12
 * @license     http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
13
 * @copyright   copyright (c) 2016 Björn Bartels <[email protected]>
14
 * 
15
 * @namespace   Siteapp
16
 * @see         Siteapp.Module
17
 * @module      Siteapp.Plugin
18
 * @abstract
19
 */
20
21
import Module from './siteapp.module';
22
23
/**
24
 * Module plugin abstract.
25
 * @module Siteapp.Plugin
26
 */
27
const Plugin = class Plugin extends Module {
0 ignored issues
show
The variable Module seems to be never declared. If this is a global, consider adding a /** global: Module */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
28
29
}
30
31
export default Plugin;