osem-fcy/.rubocop.yml

40 lines
773 B
YAML
Raw Permalink Normal View History

2025-08-12 16:43:44 +02:00
plugins:
2023-05-08 13:48:43 +02:00
- rubocop-rspec
2024-06-06 16:55:50 +02:00
- rubocop-rspec_rails
2023-05-08 13:48:43 +02:00
- rubocop-rails
2023-05-08 13:52:04 +02:00
- rubocop-capybara
2023-05-08 13:53:15 +02:00
- rubocop-performance
2024-03-04 15:49:23 +00:00
- rubocop-factory_bot
2014-07-21 13:09:37 +02:00
inherit_from: .rubocop_todo.yml
inherit_mode:
merge:
- Exclude
AllCops:
UseCache: true
CacheRootDirectory: tmp/rubocop_cache_rails_dir
MaxFilesInCache: 4000
Exclude:
- db/schema.rb
2021-08-13 10:40:45 +00:00
NewCops: enable
#################### Style ###########################
2021-08-13 10:40:45 +00:00
Layout/HashAlignment:
EnforcedHashRocketStyle: table
EnforcedColonStyle: table
##################### Metrics ##################################
##################### Rails ##################################
##################### RSpec ##################################
2018-10-23 19:31:46 -07:00
RSpec/DescribeClass:
Exclude:
- "spec/views/**/*"
- "spec/ability/*"
2018-11-13 18:01:35 -08:00