Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Gruntfile.js   A
last analyzed

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 42
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 25
mnd 0
bc 0
fnc 1
dl 0
loc 42
rs 10
bpm 0
cpm 1
noi 0
c 0
b 0
f 0
1
module.exports = function(grunt) {
2
3
    grunt.initConfig({
4
        uglify: {
5
            target: {
6
                files: [{
7
                    expand: true,
8
                    src: 'src/htdocs/js/**/*.js',
9
                }]
10
            }
11
        },
12
13
        cssmin: {
14
            target: {
15
                files: [{
16
                    expand: true,
17
                    src: 'src/htdocs/css/**/*.css',
18
                }]
19
            }
20
        },
21
22
        cacheBust: {
23
            options: {
24
                deleteOriginals: true,
25
                baseDir: 'src/htdocs/',
26
                assets: ['css/**/*.css', 'js/**/*.js'],
27
            },
28
            taskName: {
29
                files: [{
30
                    expand: true,
31
                    src: 'src/**/*.php',
32
                }]
33
            }
34
        }
35
    });
36
37
    grunt.loadNpmTasks('grunt-contrib-uglify');
38
    grunt.loadNpmTasks('grunt-contrib-cssmin');
39
    grunt.loadNpmTasks('grunt-cache-bust');
40
41
    grunt.registerTask('default', ['uglify', 'cssmin', 'cacheBust']);
42
};
43