Sprankelprachtig aan/afmeldsysteem

.rubocop.yml 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. inherit_from: .rubocop_todo.yml
  2. # This configuration was generated by
  3. # `rubocop --auto-gen-config`
  4. # on 2018-12-24 11:44:14 +0100 using RuboCop version 0.60.0.
  5. # The point is for the user to remove these configuration records
  6. # one by one as the offenses are removed from the code base.
  7. # Note that changes in the inspected code, or installation of new
  8. # versions of RuboCop, may require this file to be generated again.
  9. AllCops:
  10. Exclude:
  11. - 'db/schema.rb'
  12. - 'bin/update'
  13. - 'bin/setup'
  14. # Offense count: 30
  15. Metrics/AbcSize:
  16. Max: 71
  17. # Offense count: 6
  18. # Configuration parameters: CountComments, ExcludedMethods.
  19. # ExcludedMethods: refine
  20. Metrics/BlockLength:
  21. Max: 119
  22. # Offense count: 6
  23. # Configuration parameters: CountComments.
  24. Metrics/ClassLength:
  25. Max: 254
  26. # Offense count: 5
  27. Metrics/CyclomaticComplexity:
  28. Max: 12
  29. # Offense count: 35
  30. # Configuration parameters: CountComments, ExcludedMethods.
  31. Metrics/MethodLength:
  32. Max: 50
  33. # Offense count: 1
  34. # Configuration parameters: CountComments.
  35. Metrics/ModuleLength:
  36. Max: 105
  37. # Offense count: 3
  38. Metrics/PerceivedComplexity:
  39. Max: 13
  40. # Offense count: 55
  41. Style/Documentation:
  42. Enabled: false
  43. # Offense count: 140
  44. # Cop supports --auto-correct.
  45. # Configuration parameters: EnforcedStyle.
  46. # SupportedStyles: when_needed, always, never
  47. Style/FrozenStringLiteralComment:
  48. Enabled: false
  49. # Offense count: 215
  50. # Cop supports --auto-correct.
  51. # Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline.
  52. # SupportedStyles: single_quotes, double_quotes
  53. Style/StringLiterals:
  54. Enabled: false
  55. # Offense count: 18
  56. # Cop supports --auto-correct.
  57. # Configuration parameters: MinSize.
  58. # SupportedStyles: percent, brackets
  59. Style/SymbolArray:
  60. EnforcedStyle: brackets
  61. # Offense count: 3
  62. # Cop supports --auto-correct.
  63. # Configuration parameters: WordRegex.
  64. # SupportedStyles: percent, brackets
  65. Style/WordArray:
  66. EnforcedStyle: percent
  67. MinSize: 3
  68. # Offense count: 142
  69. # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
  70. # URISchemes: http, https
  71. Metrics/LineLength:
  72. Max: 200