Sha256: ced316a86e35597e25ee546cbd551e5ff8351fd96343ae7bdd67b0a33a29d99f
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
Contents
AllCops: Exclude: - 'spec/**/*' - 'vendor/**/*' # Rubocop is not smart enough Metrics/AbcSize: Enabled: false # CIDE::CLI is essentially a big dispatcher, no need to break it # in smaller chunks. Metrics/ClassLength: Enabled: false # Offense count: 28 Metrics/CyclomaticComplexity: Enabled: false # CIDE::CLI methods can be read top to bottom. No need to factor out # functionality unless it can be shared. Metrics/MethodLength: Enabled: false Metrics/PerceivedComplexity: Max: 20 # Don't align stuff vertically, bad for diffing Style/AlignParameters: EnforcedStyle: with_fixed_indentation # Don't obsess over missing documentation for now Style/Documentation: Enabled: false # Don't agree with rubocop here Style/MultilineOperationIndentation: Enabled: false # Prefering the short style Style/PerlBackrefs: Enabled: false # $? is not equivalent to $CHILD_STATUS Style/SpecialGlobalVars: Enabled: false # Allows for easy diffing # Keep them sorted alphabetically unless a meaningful order exists Style/TrailingCommaInLiteral: EnforcedStyleForMultiline: comma Style/TrailingCommaInArguments: EnforcedStyleForMultiline: comma
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cide-0.9.2 | .rubocop.yml |