diff options
| -rw-r--r-- | .rubocop_todo.yml | 7 | ||||
| -rw-r--r-- | lib/axlsx/workbook/worksheet/worksheet_drawing.rb | 4 |
2 files changed, 4 insertions, 7 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index ac807d56..8b7efed6 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -122,13 +122,6 @@ Naming/VariableNumber: # This cop supports safe autocorrection (--autocorrect). # Configuration parameters: EnforcedStyle. -# SupportedStyles: separated, grouped -Style/AccessorGrouping: - Exclude: - - 'lib/axlsx/workbook/worksheet/worksheet_drawing.rb' - -# This cop supports safe autocorrection (--autocorrect). -# Configuration parameters: EnforcedStyle. # SupportedStyles: prefer_alias, prefer_alias_method Style/Alias: Enabled: false diff --git a/lib/axlsx/workbook/worksheet/worksheet_drawing.rb b/lib/axlsx/workbook/worksheet/worksheet_drawing.rb index c66fe0ec..6488655c 100644 --- a/lib/axlsx/workbook/worksheet/worksheet_drawing.rb +++ b/lib/axlsx/workbook/worksheet/worksheet_drawing.rb @@ -15,8 +15,12 @@ module Axlsx @drawing = nil end + # The worksheet that owns the drawing + # @return [Worksheet] attr_reader :worksheet + # The drawing object + # @return [Drawing] attr_reader :drawing # adds a chart to the drawing object |
