for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import Tool from './components/Tool';
Nova.booting((Vue, router) => {
Nova
/** global: Nova */
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.
router
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.
Vue.component('grouped-resource-collapsable', Tool);
});
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.