Files
codeocean/.rubocop.yml
2023-01-18 10:48:53 +01:00

31 lines
587 B
YAML

require:
- rubocop-capybara
- rubocop-performance
- rubocop-rails
- rubocop-rspec
inherit_from:
- .rubocop/layout.yml
- .rubocop/lint.yml
- .rubocop/metrics.yml
- .rubocop/performance.yml
- .rubocop/rails.yml
- .rubocop/rspec.yml
- .rubocop/style.yml
- .rubocop_todo.yml
AllCops:
TargetRubyVersion: 3.2
TargetRailsVersion: 7.0
UseCache: True
NewCops: enable
Exclude:
- 'bin/*'
- 'db/schema.rb'
- 'vendor/**/*'
# Ignore local files for faster processing
- 'tmp/**/*'
- 'out/**/*'
- 'node_modules/**/*'
- 'coverage/**/*'