c08074b981
* Add annotate gem to the project * Annotate models, fixtures, factories and model_specs * Keep annotations only in Models * Remove unwanted changes in model specs * Exclude auto_annotate_models from rubocop
32 lines
580 B
YAML
32 lines
580 B
YAML
require:
|
|
- rubocop-performance
|
|
- rubocop-rails
|
|
- rubocop-rspec
|
|
inherit_from: .rubocop_todo.yml
|
|
|
|
Metrics/LineLength:
|
|
Max: 150
|
|
Documentation:
|
|
Enabled: false
|
|
Style/FrozenStringLiteralComment:
|
|
Enabled: false
|
|
Style/SymbolArray:
|
|
Enabled: false
|
|
Metrics/BlockLength:
|
|
Exclude:
|
|
- spec/**/*
|
|
Style/ClassAndModuleChildren:
|
|
EnforcedStyle: compact
|
|
RSpec/NestedGroups:
|
|
Enabled: true
|
|
Max: 4
|
|
AllCops:
|
|
Exclude:
|
|
- db/*
|
|
- bin/**/*
|
|
- db/**/*
|
|
- config/**/*
|
|
- public/**/*
|
|
- vendor/**/*
|
|
- node_modules/**/*
|
|
- lib/tasks/auto_annotate_models.rake
|