Sprankelprachtig aan/afmeldsysteem

.rubocop.yml 2.1KB

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