inherit_from: .rubocop_todo.yml
+AllCops:
+ Include:
+ - '**/*.gemspec'
+ - '**/*.podspec'
+ - '**/*.jbuilder'
+ - '**/*.rake'
+ - '**/*.opal'
+ - '**/config.ru'
+ - '**/Gemfile'
+ - '**/Rakefile'
+ - '**/Capfile'
+ - '**/Guardfile'
+ - '**/Podfile'
+ - '**/Thorfile'
+ - '**/Vagrantfile'
+ - '**/Berksfile'
+ - '**/Cheffile'
+ - '**/Vagabondfile'
+ - '**/Fastfile'
+ - '**/*.builder'
+
Rails:
Enabled: true
Style/StringLiterals:
EnforcedStyle: double_quotes
+
+Rails/HttpPositionalArguments:
+ Enabled: false
+
+Rails/SkipsModelValidations:
+ Exclude:
+ - 'db/migrate/*.rb'
+ - 'app/controllers/user_controller.rb'