for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
/**
* [Siteapp] - multi-purpose frontend application
*
* Siteapp Plugin Abstract
* alias class for Siteapp.Module
* @package [Siteapp]
* @subpackage [Siteapp] module
* @author Björn Bartels <[email protected]>
* @link https://gitlab.bjoernbartels.earth/groups/themes
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @copyright copyright (c) 2016 Björn Bartels <[email protected]>
* @namespace Siteapp
* @see Siteapp.Module
* @module Siteapp.Plugin
* @abstract
*/
import Module from './siteapp.module';
* Module plugin abstract.
const Plugin = class Plugin extends Module {
Module
/** global: Module */
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.
}
export default Plugin;
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.