JoryHogeveen/view-admin-as

View on GitHub
Check if removable args actually exist before changing url #776
Jory Hogeveen authored 09be711b
complete00:00:35
1
git clone
2
codeclimate validate-config
View output
codeclimate validate-config
No errors or warnings found in .codeclimate.yml.
3
codeclimate prepare
View output
codeclimate prepare
4
builder pull-engines
View output
determining required images
docker pull codeclimate/codeclimate-phpmd:b291
b291: Pulling from codeclimate/codeclimate-phpmd
41dcc117e123: Pulling fs layer
e7cb8c1bd7da: Pulling fs layer
382dd9e936d2: Pulling fs layer
01d3fd4ccf07: Pulling fs layer
d54cbc0233c4: Pulling fs layer
a01b3d804127: Pulling fs layer
02aaff91dfc2: Pulling fs layer
25d9a4b72163: Pulling fs layer
378b764b6ee5: Pulling fs layer
d8ae1ee899c7: Pulling fs layer
f11257bedacf: Pulling fs layer
40adf26d4529: Pulling fs layer
01d3fd4ccf07: Waiting
d8ae1ee899c7: Waiting
d54cbc0233c4: Waiting
a01b3d804127: Waiting
f11257bedacf: Waiting
40adf26d4529: Waiting
02aaff91dfc2: Waiting
25d9a4b72163: Waiting
378b764b6ee5: Waiting
e7cb8c1bd7da: Verifying Checksum
e7cb8c1bd7da: Download complete
382dd9e936d2: Verifying Checksum
382dd9e936d2: Download complete
41dcc117e123: Verifying Checksum
41dcc117e123: Download complete
d54cbc0233c4: Verifying Checksum
d54cbc0233c4: Download complete
01d3fd4ccf07: Verifying Checksum
01d3fd4ccf07: Download complete
41dcc117e123: Pull complete
a01b3d804127: Verifying Checksum
e7cb8c1bd7da: Pull complete
02aaff91dfc2: Verifying Checksum
02aaff91dfc2: Download complete
25d9a4b72163: Verifying Checksum
25d9a4b72163: Download complete
382dd9e936d2: Pull complete
378b764b6ee5: Download complete
d8ae1ee899c7: Verifying Checksum
d8ae1ee899c7: Download complete
40adf26d4529: Verifying Checksum
40adf26d4529: Download complete
01d3fd4ccf07: Pull complete
f11257bedacf: Download complete
d54cbc0233c4: Pull complete
a01b3d804127: Pull complete
02aaff91dfc2: Pull complete
25d9a4b72163: Pull complete
378b764b6ee5: Pull complete
d8ae1ee899c7: Pull complete
f11257bedacf: Pull complete
40adf26d4529: Pull complete
Digest: sha256:100ad83154de1d7143edb4360753a5a3c2c35f8a0fd8f00352718003e2b63bfa
Status: Downloaded newer image for registry.prod.codeclimate.net/codeclimate/codeclimate-phpmd:b291
docker pull codeclimate/codeclimate-phpcodesniffer:b163
b163: Pulling from codeclimate/codeclimate-phpcodesniffer
a0710691c81a: Pulling fs layer
a3ed95caeb02: Pulling fs layer
f3c17b6c6935: Pulling fs layer
c3166a36a8d9: Pulling fs layer
83a051f0858f: Pulling fs layer
f0e9f15ec462: Pulling fs layer
034c114563b8: Pulling fs layer
5edc25e33d4e: Pulling fs layer
83a051f0858f: Waiting
f0e9f15ec462: Waiting
034c114563b8: Waiting
c3166a36a8d9: Waiting
a3ed95caeb02: Verifying Checksum
a3ed95caeb02: Download complete
f3c17b6c6935: Download complete
a0710691c81a: Verifying Checksum
a0710691c81a: Download complete
83a051f0858f: Verifying Checksum
83a051f0858f: Download complete
a0710691c81a: Pull complete
a3ed95caeb02: Pull complete
c3166a36a8d9: Download complete
034c114563b8: Verifying Checksum
034c114563b8: Download complete
f3c17b6c6935: Pull complete
5edc25e33d4e: Download complete
f0e9f15ec462: Verifying Checksum
f0e9f15ec462: Download complete
c3166a36a8d9: Pull complete
83a051f0858f: Pull complete
f0e9f15ec462: Pull complete
034c114563b8: Pull complete
5edc25e33d4e: Pull complete
Digest: sha256:cab8fcc753b6ae0e309b899665b22b1b62c26c56dab9b3c6a938fa72ca7c0640
Status: Downloaded newer image for registry.prod.codeclimate.net/codeclimate/codeclimate-phpcodesniffer:b163
5
structure
View output
12
Parser process id: 12
codeclimate-parser socket not present
waiting 1s...
W, [2024-04-18T22:11:39.626384 #1]  WARN -- : Skipping assets/js/view-admin-as.min.js due to CC::Parser::Client::HTTPError
W, [2024-04-18T22:11:39.626451 #1]  WARN -- : Response status: 422
6
duplication
View output
12
Parser process id: 12
codeclimate-parser socket not present
waiting 1s...
W, [2024-04-18T22:11:45.075506 #1]  WARN -- : Skipping ./assets/js/view-admin-as.min.js due to CC::Parser::Client::HTTPError
W, [2024-04-18T22:11:45.075563 #1]  WARN -- : Response status: 422
7
fixme
fixme engine documentation
8
csslint
csslint engine documentation
9
eslint
eslint engine documentation
View output
ESLint is running with the default parser.
tests/.eslintrc appears to be incompatible with ESLint 3.
We've attempted to fix any compatibility issues.
Note: some of these warnings may originate in configurations you are extending.
If analysis succeeds, you have nothing to worry about.
To upgrade it do the following:

* Add .yml or .json to the config file name. Extension-less config file names are deprecated.
* Set sourceType to "module" in parserOptions section
* Remove modules from ecmaFeatures section
* Set ecmaVersion to 6 in parserOptions section
* Move ecmaFeatures section under parserOptions section
* Remove no-arrow-condition rule and add the following:

    "no-confusing-arrow": "off",
    "no-constant-condition": [
        "off",
        {
            "checkLoops": false
        }
    ]


* Remove no-empty-label rule and add the following:

    "no-labels": [
        "error",
        {
            "allowLoop": true
        }
    ]


* Remove space-after-keywords rule and add the following:

    "keyword-spacing": [
        "off",
        {
            "after": false
        }
    ]


* Remove space-before-keywords rule and add the following:

    "keyword-spacing": [
        "off",
        {
            "before": false
        }
    ]


* Remove space-return-throw-case rule and add the following:

    "keyword-spacing": [
        "off",
        {
            "after": true
        }
    ]



WARN: Skipping assets/js/view-admin-as.min.js: it appears to be minified
(node:8) Warning: Accessing non-existent property 'cd' of module exports inside circular dependency
(Use `node --trace-warnings ...` to show where the warning was created)
(node:8) Warning: Accessing non-existent property 'pwd' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'ls' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'find' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'cp' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'rm' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'mv' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'mkdir' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'test' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'cat' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'head' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'tail' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'to' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'toEnd' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'sed' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'sort' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'uniq' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'grep' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'which' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'echo' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'dirs' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'pushd' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'popd' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'ln' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'tempdir' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'exec' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'chmod' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'touch' of module exports inside circular dependency
(node:8) Warning: Accessing non-existent property 'set' of module exports inside circular dependency
10
phpmd
phpmd engine documentation
11
phpcodesniffer
phpcodesniffer engine documentation