Sha256: 4eaf9a33619e8a6e8a94fe751bada8a773e69db89d09d5426226da384414fcf1
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 KB
Contents
AllCops: Include: - '**/Rakefile' - '**/config.ru' - 'lib/tasks/**/*' Exclude: - Gemfile* - 'db/**/*' - 'config/**/*' - 'bin/**/*' - 'vendor/bundle/**/*' - 'spec/support/**/*' # rspec support helpers have a strange api RunRailsCops: true # We don't care about method length, since we check method cyclomatic # complexity. Metrics/MethodLength: Enabled: false # Trailing commas make for clearer diffs because the last line won't appear # to have been changed, as it would if it lacked a comma and had one added. Style/TrailingComma: EnforcedStyleForMultiline: comma # Cop supports --auto-correct. # Configuration parameters: PreferredDelimiters. Style/PercentLiteralDelimiters: PreferredDelimiters: # Using `[]` for string arrays instead of `()`, since normal arrays are # indicated with `[]` not `()`. '%w': '[]' '%W': '[]' Style/AndOr: # Whether `and` and `or` are banned only in conditionals (conditionals) # or completely (always). # They read better, more like normal English. Enabled: false
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
devise_security_extension-0.10.0 | .rubocop.yml |