Hey! I'm trying to enable overcommit with rubocop for my repository and here is my config:
PreCommit:
RuboCop:
enabled: true
command: ['bundle', 'exec', 'rubocop']
problem_on_unmodified_line: warn
And the problem is, even though .overcommit.yml file is the only modified file in that branch, running overcommit --run is giving me rubocop errors (and makes overcommit rubocop step fail) for every single rubocop violation on my branch/repo. It's like problem_on_unmodified_line: warn line is being ignored and full rubocop check is being triggered for my repo. I would expect it to indeed list these violations but in an "unmodified lines" section of the output and not make entire step fail but maybe I misunderstand something?
I'm on overcommit 0.64.0 / rubocop 1.57.2
Hey! I'm trying to enable overcommit with rubocop for my repository and here is my config:
And the problem is, even though
.overcommit.ymlfile is the only modified file in that branch, runningovercommit --runis giving me rubocop errors (and makes overcommit rubocop step fail) for every single rubocop violation on my branch/repo. It's likeproblem_on_unmodified_line: warnline is being ignored and full rubocop check is being triggered for my repo. I would expect it to indeed list these violations but in an "unmodified lines" section of the output and not make entire step fail but maybe I misunderstand something?I'm on overcommit 0.64.0 / rubocop 1.57.2