Passed
Push — master ( 366f40...c67819 )
by Christian
13:04 queued 10s
created

component/context-menu/sw-context-menu/index.js (1 issue)

Labels
Severity
1
import template from './sw-context-menu.html.twig';
2
import './sw-context-menu.scss';
3
4
const { Component } = Shopware;
0 ignored issues
show
The variable Shopware seems to be never declared. If this is a global, consider adding a /** global: Shopware */ 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...
5
6
/**
7
 * @private
8
 */
9
Component.register('sw-context-menu', {
10
    template
11
});
12