Sha256: 64635e043864c643bc003348cab5d0b869fe81dda9b6815ffdd65ee04a6f1fbf
Contents?: true
Size: 1.08 KB
Versions: 19
Compression:
Stored size: 1.08 KB
Contents
--- require: - rubocop-rails - rubocop-rails-accessibility AllCops: ActiveSupportExtensionsEnabled: true # Config blocks can be very long Metrics/BlockLength: Exclude: - 'config/**/*' # casecmp does not work with all of Unicode, so this is not a good optimization for internationalized apps Performance/Casecmp: Enabled: false # This cop is unsafe because it has known compatibility issues with ActiveRecord and other frameworks. Performance/Count: Enabled: false # This cop is unsafe because it has known compatibility issues with ActiveRecord and other frameworks. Performance/Detect: Enabled: false # Sum is different between enumerables and ActiveRecord, let's not cause confusion... Performance/Sum: Enabled: false Rails/DefaultScope: Enabled: true Rails/EnvironmentVariableAccess: Enabled: true Rails/OrderById: Enabled: true Rails/PluckId: Enabled: true Rails/TableNameAssignment: Enabled: true Style/Documentation: Exclude: - app/controllers/**/* - app/mailers/**/* - app/models/**/* - config/**/* - db/migrate/**/* - test/**/*
Version data entries
19 entries across 19 versions & 1 rubygems