Sha256: b1746eb0cc9204bcd078e17d352dc4b4c8571474cb782345910c3a1f8e09e118
Contents?: true
Size: 1.23 KB
Versions: 8
Compression:
Stored size: 1.23 KB
Contents
--- require: - rubocop-rails - rubocop-rails-accessibility AllCops: ActiveSupportExtensionsEnabled: true # Migrations can be complex Metrics/AbcSize: Exclude: - 'db/**/*' # Config blocks can be very long Metrics/BlockLength: Exclude: - 'config/**/*' # Migrations can be very long Metrics/MethodLength: Exclude: - 'db/**/*' # 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
8 entries across 8 versions & 1 rubygems