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.
Completed
Push — rewrite-laravel ( 4c0408...686099 )
by Oliver
02:53
created

resources/assets/js/vendor.js   A

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 42
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 0
dl 0
loc 42
rs 10
c 1
b 1
f 0
cc 0
nc 1
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 2
1
window._ = require('lodash');
2
3
/**
4
 * We'll load jQuery and the Bootstrap jQuery plugin which provides support
5
 * for JavaScript based Bootstrap features such as modals and tabs. This
6
 * code may be modified to fit the specific needs of your application.
7
 */
8
9
window.$ = window.jQuery = require('jquery');
10
11
require('bootstrap-sass');
12
require('bootstrap-material-design');
13
14
/**
15
 * We'll load the axios HTTP library which allows us to easily issue requests
16
 * to our Laravel back-end. This library automatically handles sending the
17
 * CSRF token as a header based on the value of the "XSRF" token cookie.
18
 */
19
20
window.axios = require('axios');
21
22
/**
23
 * Setup moment.js
24
 */
25
window.moment = require('moment');
26
require('moment/locale/de-ch.js');
27
moment.locale('de');
0 ignored issues
show
Bug introduced by
The variable moment seems to be never declared. If this is a global, consider adding a /** global: moment */ 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...
28
29
/**
30
 * Kendo UI
31
 */
32
require('kendo-ui-core');
33
require('kendo-ui-core/js/messages/kendo.messages.de-CH');
34
require('kendo-ui-core/js/cultures/kendo.culture.de-CH');
35
kendo.culture("de-CH");
0 ignored issues
show
Bug introduced by
The variable kendo seems to be never declared. If this is a global, consider adding a /** global: kendo */ 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...
36
37
/**
38
 * Autosize
39
 */
40
window.autosize = require('autosize');
41
42
window.Vue = require('vue');
43
44
// import Echo from 'laravel-echo'
45
46
// window.Pusher = require('pusher-js');