Questions tagged [code-climate-cli]

Questions concerning the use of the CodeClimate command line tool, as distinct from the CodeClimate website.

CodeClimate has a sophisticated open-source command-line tool that allows developers to analyse their code without needing to push it up to the CodeClimate site.

5 questions
3
votes
1 answer

Running Codeclimate locally

I try to install Codeclimate via docker by reading the Codeclimate readme docs. In order to test Codeclimate locally. I made a new folder and put hello.php and .codeclimate.yml. The following is my hello.php
Set Kyar Wa Lar
  • 4,488
  • 4
  • 30
  • 57
3
votes
1 answer

How can I get the CodeClimate CLI to emit more detail?

I'm using the CodeClimate CLI to perform analysis of a codebase I've inherited, and, while it certainly works, its output is quite limited. For example, when it says 23-30: Similar code found in 4 other locations (mass = 27) [duplication] It would…
Dave Sag
  • 13,266
  • 14
  • 86
  • 134
1
vote
2 answers

How can I use a custom Code Climate configuration in GitLab CE?

I have trouble setting up the following environment. I’d like to quickly check the code quality of a few SASS files in my local GitLab repository. This is the contents of the .gitlab-ci.yml file: include: - template:…
0
votes
1 answer

codeclimate validate-config Error

Am new to code climate and am facing this error when i run my github project on codeclimate. codeclimate validate-config ERROR: Unable to parse: (): found unexpected end of stream while scanning a quoted scalar at line 23 column 5 Below…
Lutaaya Huzaifah Idris
  • 3,596
  • 8
  • 38
  • 77
-3
votes
1 answer

BLANK IMPACT MATRIX in CLIMADA

I'm trying to get an Impact Matrix in Climada from an impact object using the below codes: Calculating impact matrix for present from climada.engine import Impact imp1 = Impact() imp1.calc(exp, imp_set_xlsx, ts_fl, save_mat=True) When I tried to…