diff options
| author | Geremia Taglialatela <[email protected]> | 2023-04-05 17:16:53 +0200 |
|---|---|---|
| committer | Geremia Taglialatela <[email protected]> | 2023-04-06 09:54:15 +0200 |
| commit | e9496a58dbf17d4b9bb615f3cb630f1e32574ece (patch) | |
| tree | 4cd5612e2c9597d5107f03f6699bb0fc49800bd9 /lib | |
| parent | ea2785941ab1087a0efe42b55ec23130bbdaf434 (diff) | |
| download | caxlsx-e9496a58dbf17d4b9bb615f3cb630f1e32574ece.tar.gz caxlsx-e9496a58dbf17d4b9bb615f3cb630f1e32574ece.zip | |
Fix Layout/EndOfLine offenses
```
rubocop --only Layout/EndOfLine
```
Manually fixed
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/axlsx/workbook/worksheet/sheet_format_pr.rb | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/axlsx/workbook/worksheet/sheet_format_pr.rb b/lib/axlsx/workbook/worksheet/sheet_format_pr.rb index fc9ce3a3..12c2e3b2 100644 --- a/lib/axlsx/workbook/worksheet/sheet_format_pr.rb +++ b/lib/axlsx/workbook/worksheet/sheet_format_pr.rb @@ -1,17 +1,17 @@ module Axlsx - #Sheet formatting properties - # <xsd:complexType name="CT_SheetFormatPr">
- # <xsd:attribute name="baseColWidth" type="xsd:unsignedInt" use="optional" default="8"/>
- # <xsd:attribute name="defaultColWidth" type="xsd:double" use="optional"/>
- # <xsd:attribute name="defaultRowHeight" type="xsd:double" use="required"/>
- # <xsd:attribute name="customHeight" type="xsd:boolean" use="optional" default="false"/>
- # <xsd:attribute name="zeroHeight" type="xsd:boolean" use="optional" default="false"/>
- # <xsd:attribute name="thickTop" type="xsd:boolean" use="optional" default="false"/>
- # <xsd:attribute name="thickBottom" type="xsd:boolean" use="optional" default="false"/>
- # <xsd:attribute name="outlineLevelRow" type="xsd:unsignedByte" use="optional" default="0"/>
- # <xsd:attribute name="outlineLevelCol" type="xsd:unsignedByte" use="optional" default="0"/>
- #</xsd:complexType>
+ # Sheet formatting properties + # <xsd:complexType name="CT_SheetFormatPr"> + # <xsd:attribute name="baseColWidth" type="xsd:unsignedInt" use="optional" default="8"/> + # <xsd:attribute name="defaultColWidth" type="xsd:double" use="optional"/> + # <xsd:attribute name="defaultRowHeight" type="xsd:double" use="required"/> + # <xsd:attribute name="customHeight" type="xsd:boolean" use="optional" default="false"/> + # <xsd:attribute name="zeroHeight" type="xsd:boolean" use="optional" default="false"/> + # <xsd:attribute name="thickTop" type="xsd:boolean" use="optional" default="false"/> + # <xsd:attribute name="thickBottom" type="xsd:boolean" use="optional" default="false"/> + # <xsd:attribute name="outlineLevelRow" type="xsd:unsignedByte" use="optional" default="0"/> + # <xsd:attribute name="outlineLevelCol" type="xsd:unsignedByte" use="optional" default="0"/> + # </xsd:complexType> class SheetFormatPr include Axlsx::SerializedAttributes |
