This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Enabling required RuboCop plugins | |
require: | |
- rubocop # Basic Rubocop functionality | |
- rubocop-performance # Performance-related cops to optimize code | |
- rubocop-rails # Rails-specific cops for Ruby on Rails applications | |
- rubocop-rspec # RSpec-specific cops for testing | |
# Configurations for all cops | |
AllCops: | |
DisabledByDefault: true # Disables all cops by default to only enable explicitly listed ones |