By default coverage includes all files under ember project. As i am
unable to coverage adapters/* , serializers/* etc in tests, how can i
exclude those files and directories from code climate coverage ?
Just trying to set up my site with https://codeclimate.com but getting error when it hits my eslint config settings. Getting an error on my quotes rule which is
"quotes": [2,"single",
{
"avoidEscape": true
}
]
But keep getting…
I'm using code climate on one of my projects, and I'm getting an error for have "too complex" of code. I'm not sure how to make the code it's calling out less complex? Here it is:
Method:
def apply_json
{
total_ticket_count:…
I have the following snippet:
protected function sendEmail($email)
{
extract($email);
$this->transmail->locale($locale)
->timezone($timezone)
->template($template)
…
I passed codeclimate to my code, and I obtained the following:
Similar code found in 1 other location
This is my code:
stradd = 'iterable_item_added'
if stradd in ddiff:
added = ddiff[stradd]
npos_added = parseRoots(added)
dics_added =…
Here's the first fail build. I forgot to configure file. So I added it again and recommit. Now it won't fire again.
Do I have to get a CI (using Travis CI) to first successfully test it first?
I am trying to add the Code Climate Test Reporter to a Rails app where I am using CircleCI.
I have followed the setup instructions along with the error messages I am getting when CircleCI runs the build, however, I am a bit stuck now. My tests all…
I recently tried codeclimate. In the style codeclimate report an error on a parameter that is not camel notation.
the function is written like this:
function asd ($_par) {}
I am aware that it is in the form:
function asd ($parameterInCamel)…
Istanbul puts everything into coverage folder.
In circle.yaml I set the below ENV var as artifact folder.
CIRCLE_ARTIFACTS: ~/proj_name/coverage
CircleCI doesn't seem to find artifacts. Build says no atrifacts found.
Am I missing anything here?
I am currently developing a Ruby project and I often use code climate to see the quality of my code. The thing is, we will rewrite the code in .NET, so my boss wants to be able to monitor the quality of code by uploading the code into tool just like…
I see this at codeclimate.com and I want it to go away. What should I do?
I enabled the Code Climate platform and here is where I created my .codeclimate.yml, using the default .yml file Code Climate provides.
Code Climate docs say...
Add a…
I am able to get the following code to work:
world_dat <- get_ensemble_temp(world,"annualavg",2080,2100)
but I would like to change it to historical and start in 1920,1939 (or even earlier). Unfortunately it keeps saying unused arguments
…
I have a master admin who can create two different admins [property, content_contributor].
In the master admin's require params I have this
class MasterAdmins::ContentContributorsController <…
full output:
rspec
Run options: include {:focus=>true}
All examples were filtered out; ignoring {:focus=>true}
..........................
Deprecation Warnings:
RSpec::Core::Configuration#treat_symbols_as_metadata_keys_with_true_values= is…
I came across https://codeclimate.com.
Super awesome, but I'm working on a project whose code I cannot share with others or Code Climate.
Now I would like to be able to improve my code quality and wonder if anyone can suggest tools that do what…