insenseanalytics /
nova-bar-metrics
| 1 | import BarChartMetric from './components/BarChartMetric' |
||
| 2 | import BaseBarChartMetric from './components/Base/BarChartMetric' |
||
| 3 | |||
| 4 | Nova.booting((Vue, router) => { |
||
|
0 ignored issues
–
show
The variable
Nova seems to be never declared. If this is a global, consider adding a /** global: Nova */ 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 | Vue.config.devtools = true |
||
| 6 | Vue.component('base-bar-chart-metric', BaseBarChartMetric) |
||
| 7 | Vue.component('bar-chart-metric', BarChartMetric) |
||
| 8 | }) |
||
| 9 |
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.