Sha256: d62bd7779274b5657adbfbb491b4f15e5afe3374068cc268f41d9554eee5804a
Contents?: true
Size: 1.11 KB
Versions: 2
Compression:
Stored size: 1.11 KB
Contents
AllCops: # Cop names are not displayed in offense messages by default. Change behavior # by overriding DisplayCopNames, or by giving the -D/--display-cop-names # option. DisplayCopNames: true # Style guide URLs are not displayed in offense messages by default. Change # behavior by overriding DisplayStyleGuide, or by giving the # -S/--display-style-guide option. DisplayStyleGuide: true Exclude: - 'bin/**/*' - 'spec/**/*' - 'vendor/**/*' # Missing top-level class documentation comment Style/Documentation: Enabled: false # Line is too long # https://github.com/bbatsov/ruby-style-guide#80-character-limits Metrics/LineLength: Max: 180 # 80 # Assignment Branch Condition size for perform is too high # http://c2.com/cgi/wiki?AbcMetric Metrics/AbcSize: Enabled: false # Method has too many lines # https://github.com/bbatsov/ruby-style-guide#short-methods Metrics/MethodLength: Max: 25 # 10 # Cyclomatic complexity for dom_for_model is too high Metrics/CyclomaticComplexity: Enabled: false # Perceived complexity for dom_for_model is too high Metrics/PerceivedComplexity: Enabled: false
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dom_for-1.2.0 | .rubocop.yml |
dom_for-1.1.0 | .rubocop.yml |