GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

resources/js/notification_feed.js   A
last analyzed

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 6
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 4
c 0
b 0
f 0
dl 0
loc 6
rs 10
mnd 0
bc 0
fnc 1
bpm 0
cpm 1
noi 3
1
Nova.booting((Vue, router) => {
0 ignored issues
show
Bug introduced by
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...
Unused Code introduced by
The parameter router is not used and could be removed.

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.

Loading history...
Unused Code introduced by
'router' is defined but never used.
Loading history...
2
  // Load components
3
  Vue.component('notification-feed', require('./components/NotificationFeed'))
4
  Vue.component('notifications-panel', require('./components/NotificationsPanel'))
5
  Vue.component('notification-message', require('./components/NotificationMessage'))
6
})
7