Sprankelprachtig aan/afmeldsysteem

.rubocop.yml 2.0KB

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