Sha256: 507a3454e70fbb6b4afbd91b8ccb744509aaf200a29b316959f3cf56944bd2af
Contents?: true
Size: 808 Bytes
Versions: 65
Compression:
Stored size: 808 Bytes
Contents
# These Cops Must Always Be Enabled! # These Cops check for things that are *literally* bugs, # and no code should ever be released that fails these cops. # # The Exclude: [] is crucial here: # even if our .rubocop_todo.yml contained exclusions for strict cops, we nullify them here, # thus, re-activating these cops for all the files. # # These settings must be loaded after any files of "TODOs" that instruct RuboCop to ignore errors. # Fortunately this project doesn't rely on TODOs, instead relying on a rubocop_gradual lockfile. # Rails/Output: # Don't leave puts-debugging Enabled: true Exclude: [] Rails/FindEach: # each could severely affect the performance, use find_each Enabled: true Exclude: [] Rails/UniqBeforePluck: # uniq.pluck and not pluck.uniq Enabled: true Exclude: []
Version data entries
65 entries across 65 versions & 13 rubygems