Sha256: b1219b1158fe775781f7a4898d02197623777d7c7c6b2de43dd9af2c60c09084

Contents?: true

Size: 1.87 KB

Versions: 15

Compression:

Stored size: 1.87 KB

Contents

---
require: rubocop-performance

Performance/CaseWhenSplat:
  Description: >-
                  Place `when` conditions that use splat at the end
                  of the list of `when` branches.
  Enabled: false

Performance/Count:
  Description: >-
                  Use `count` instead of `select...size`, `reject...size`,
                  `select...count`, `reject...count`, `select...length`,
                  and `reject...length`.
  Enabled: false

Performance/Detect:
  Description: >-
                  Use `detect` instead of `select.first`, `find_all.first`,
                  `select.last`, and `find_all.last`.
  Reference: 'https://github.com/JuanitoFatas/fast-ruby#enumerabledetect-vs-enumerableselectfirst-code'
  Enabled: false

Performance/FlatMap:
  Description: >-
                  Use `Enumerable#flat_map`
                  instead of `Enumerable#map...Array#flatten(1)`
                  or `Enumberable#collect..Array#flatten(1)`
  Reference: 'https://github.com/JuanitoFatas/fast-ruby#enumerablemaparrayflatten-vs-enumerableflat_map-code'
  Enabled: false

Performance/ReverseEach:
  Description: 'Use `reverse_each` instead of `reverse.each`.'
  Reference: 'https://github.com/JuanitoFatas/fast-ruby#enumerablereverseeach-vs-enumerablereverse_each-code'
  Enabled: false

Performance/Size:
  Description: >-
                  Use `size` instead of `count` for counting
                  the number of elements in `Array` and `Hash`.
  Reference: 'https://github.com/JuanitoFatas/fast-ruby#arraycount-vs-arraysize-code'
  Enabled: false

Performance/StringReplacement:
  Description: >-
                  Use `tr` instead of `gsub` when you are replacing the same
                  number of characters. Use `delete` instead of `gsub` when
                  you are deleting characters.
  Reference: 'https://github.com/JuanitoFatas/fast-ruby#stringgsub-vs-stringtr-code'
  Enabled: false

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
psu_identity-0.6.1 .niftany/performance.yml
psu_identity-0.6.0 .niftany/performance.yml
psu_identity-0.5.1 .niftany/performance.yml
psu_identity-0.5.0 .niftany/performance.yml
niftany-0.10.1 rubocop/performance.yml
niftany-0.10.0 rubocop/performance.yml
psu_identity-0.4.0 .niftany/performance.yml
psu_identity-0.3.0 .niftany/performance.yml
psu_identity-0.2.0 .niftany/performance.yml
niftany-0.9.0 rubocop/performance.yml
niftany-0.8.0 rubocop/performance.yml
niftany-0.7.0 rubocop/performance.yml
niftany-0.6.0 rubocop/performance.yml
niftany-0.5.1 rubocop/performance.yml
niftany-0.5.0 rubocop/performance.yml