Sha256: 36fc9ec77064fe93fcf932e751917c1d48f341e20ce64821fff9d585309f3329
Contents?: true
Size: 1.12 KB
Versions: 11
Compression:
Stored size: 1.12 KB
Contents
AllCops: Exclude: # These are autogenerated binstubs. - 'bin/*' # Keep rubocop from scanning installed gems. - 'vendor/**/*' # Line length is something that isn't dogmatic. 80 chars is a good recommendation. Metrics/LineLength: Enabled: false # This requires leading comments which can tend to be redundant. Style/Documentation: Enabled: false # Extra cops: # Encourages block syntax for things like File.open Style/AutoResourceCleanup: Enabled: true # Standardize multi-line params. Style/FirstArrayElementLineBreak: Enabled: true Style/FirstHashElementLineBreak: Enabled: true Style/FirstMethodArgumentLineBreak: Enabled: true Style/FirstMethodParameterLineBreak: Enabled: true # Encourage using public_send to prove that you actually want to bypass visibility. Style/Send: Enabled: true # If you interpolate a literal, just include it in the string itself. Lint/LiteralInInterpolation: Enabled: true # Personal preference. Makes the diffs smaller. Style/TrailingCommaInLiteral: EnforcedStyleForMultiline: consistent_comma Style/TrailingCommaInArguments: EnforcedStyleForMultiline: consistent_comma
Version data entries
11 entries across 11 versions & 1 rubygems