diff options
| author | Zsolt Kozaroczy <[email protected]> | 2023-05-31 09:10:37 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-31 09:10:37 +0200 |
| commit | 810c0569a30e6bc053189ea56b4e4d70fd035ac2 (patch) | |
| tree | a6a8cf23fe994b50a78f0c8e17724e5836f91c73 /.rubocop_todo.yml | |
| parent | ede5a1c34e522846e01580c84a0b0d8b85330ed2 (diff) | |
| parent | 2a70161abe24ae130041aaca3eec79e63d08a5f5 (diff) | |
| download | caxlsx-810c0569a30e6bc053189ea56b4e4d70fd035ac2.tar.gz caxlsx-810c0569a30e6bc053189ea56b4e4d70fd035ac2.zip | |
Merge pull request #261 from tagliala/chore/fix-string-concatenation-in-non-production-code
Fix StringConcatenation offenses (non-production)
Diffstat (limited to '.rubocop_todo.yml')
| -rw-r--r-- | .rubocop_todo.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index fc2954d0..e15978df 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -464,7 +464,14 @@ Style/StringChars: # This cop supports unsafe autocorrection (--autocorrect-all). # Configuration parameters: Mode. Style/StringConcatenation: - Enabled: false + Exclude: + - 'lib/axlsx/drawing/area_series.rb' + - 'lib/axlsx/drawing/line_series.rb' + - 'lib/axlsx/drawing/pie_series.rb' + - 'lib/axlsx/drawing/scatter_series.rb' + - 'lib/axlsx/stylesheet/color.rb' + - 'lib/axlsx/util/constants.rb' + - 'lib/axlsx/workbook/worksheet/worksheet.rb' # This cop supports safe autocorrection (--autocorrect). # Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline. |
