Conversation
…ributions_spec.rb and spec/tests_integration/layers_integration/github_spec.rb to pass the test
…project_spec.rb and skip some tests in spec/tests_integration/measurement_integration/contributor_measure_spec.rb and spec/tests_integration/measurement_integration/credit_share_spec.rb
Fix/parser gem
soumyaray
left a comment
There was a problem hiding this comment.
All good but just suggested on little comment!
| require_relative '../helpers/spec_helper.rb' | ||
|
|
||
| JSON_FORMAT_COMMAND = 'rubocop --except Metrics -f j 2>&1' | ||
| JSON_FORMAT_COMMAND = 'rubocop -f j --except Metrics 2>&1' |
There was a problem hiding this comment.
Could you leave a comment above this line explaining what the flags do?
There was a problem hiding this comment.
-
-f j: This parameter specifies the output format as JSON. -f stands for format, and j represents JSON.
-
--except Metrics: This parameter instructs rubocop to ignore all rules in the Metrics category. Metrics typically include rules related to code length, complexity, etc.
-
2>&1: This is a shell command used to redirect standard error (stderr) to standard output (stdout). This ensures that both errors and regular output are captured and processed.
soumyaray
left a comment
There was a problem hiding this comment.
Hi! Please make sure that the public CodePraise API still deletes repos. You may pass in an option set to the worker informing it whether or not to delete the repo.
No description provided.