.rubocop.yml 373 B

12345678910111213141516171819202122232425
  1. AllCops:
  2. Exclude:
  3. - 'rails-settings-cached.gemspec'
  4. - 'vendor/**/*'
  5. - 'lib/generators/settings/templates/*'
  6. Documentation:
  7. Enabled: false
  8. # don't prefer 'fail' over raise
  9. SignalException:
  10. Enabled: false
  11. LineLength:
  12. Max: 300
  13. ClassVars:
  14. Enabled: false
  15. FileName:
  16. Enabled: false
  17. Style/StringLiteralsInInterpolation:
  18. EnforcedStyle: double_quotes