Now that RuboCop uses lint_roller, is it expected that Standard should work with any RuboCop plugin that has been updated to use lint_roller?
I'm trying to use Standard with rubocop-minitest which was updated in rubocop/rubocop-minitest#329
Here is a demo repo: https://github.com/andyw8/demo-standard-rubocop-minitest
It has both RuboCop and Standard installed. There are identical config files .standard.yml and .rubocop.yml, which enable a cop from rubocop-minitest.
Running bundle exec rubocop test/example_test.rb emits an error for Minitest/LiteralAsActualArgument, as expected.
But running bundle exec standardrb test/example_test.rb doesn't emit anything.
Now that RuboCop uses lint_roller, is it expected that Standard should work with any RuboCop plugin that has been updated to use lint_roller?
I'm trying to use Standard with rubocop-minitest which was updated in rubocop/rubocop-minitest#329
Here is a demo repo: https://github.com/andyw8/demo-standard-rubocop-minitest
It has both RuboCop and Standard installed. There are identical config files
.standard.ymland.rubocop.yml, which enable a cop from rubocop-minitest.Running
bundle exec rubocop test/example_test.rbemits an error forMinitest/LiteralAsActualArgument, as expected.But running
bundle exec standardrb test/example_test.rbdoesn't emit anything.