diff options
| author | Geremia Taglialatela <[email protected]> | 2023-06-05 15:53:15 +0200 |
|---|---|---|
| committer | Geremia Taglialatela <[email protected]> | 2023-06-05 17:27:41 +0200 |
| commit | 7fdbd745a2c914001a2174aeadae26b9c970ffaf (patch) | |
| tree | 9b1a440ef0bee0ecaaeb7c991dcc9d8639cb7b6d /.rubocop_todo.yml | |
| parent | a2eeaeefca8deb3d26f3f8dc62976fe6bf1dafcf (diff) | |
| download | caxlsx-7fdbd745a2c914001a2174aeadae26b9c970ffaf.tar.gz caxlsx-7fdbd745a2c914001a2174aeadae26b9c970ffaf.zip | |
Fix Style/FormatString offenses
`Kernel#format` is faster and will avoid to allocate an array compared
to `String#%`.
```
IPS:
kernel_format: 3877614.2 i/s
string_percent: 3531475.0 i/s - 1.10x (± 0.00) slower
Memory:
kernel_format: 160 allocated
string_percent: 200 allocated - 1.25x more
```
Diffstat (limited to '.rubocop_todo.yml')
| -rw-r--r-- | .rubocop_todo.yml | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 2359f950..67e59726 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -187,18 +187,6 @@ Style/ExpandPathArguments: - 'axlsx.gemspec' # This cop supports safe autocorrection (--autocorrect). -# Configuration parameters: EnforcedStyle. -# SupportedStyles: format, sprintf, percent -Style/FormatString: - Exclude: - - 'lib/axlsx/drawing/pic.rb' - - 'lib/axlsx/drawing/view_3D.rb' - - 'lib/axlsx/drawing/vml_drawing.rb' - - 'lib/axlsx/util/accessors.rb' - - 'lib/axlsx/util/validators.rb' - - 'lib/axlsx/workbook/worksheet/worksheet.rb' - -# This cop supports safe autocorrection (--autocorrect). # Configuration parameters: MaxUnannotatedPlaceholdersAllowed, AllowedMethods, AllowedPatterns. # SupportedStyles: annotated, template, unannotated Style/FormatStringToken: |
