Files
codeocean/.rubocop.yml
2021-04-07 14:06:32 +02:00

29 lines
571 B
YAML

AllCops:
TargetRubyVersion: 2.7
NewCops: enable
Exclude:
- bin/*
- config/application.rb
- config/initializers/sorcery.rb
- db/seeds/**/*
- db/schema.rb
- public/uploads/**/*
- tmp/**/*
- vendor/**/*
- node_modules/**/*
Layout/LineLength:
Enabled: false
require:
- rubocop-rspec
- rubocop-rails
Style/Documentation:
Enabled: false
Layout/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
RSpec/MultipleExpectations:
Max: 2
Metrics/BlockLength:
Exclude:
- 'spec/**/*.rb'
- 'config/environments/*.rb'