for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
Ext.define('Shopware.apps.DneCustomJsCss.store.JsCss', {
Ext
/** global: Ext */
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.
extend: 'Ext.data.Store',
remoteFilter: true,
autoLoad: false,
model: 'Shopware.apps.DneCustomJsCss.model.JsCss',
pageSize: 20,
proxy: {
type: 'ajax',
url: '{url controller="DneCustomJsCss" action="list"}',
reader: {
type: 'json',
root: 'data',
totalProperty: 'total'
}
});
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.