summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/stylesheet
diff options
context:
space:
mode:
authorGeremia Taglialatela <[email protected]>2023-04-10 11:45:57 +0200
committerGeremia Taglialatela <[email protected]>2023-04-10 11:45:57 +0200
commit84a2b255d6fd780f526ac3d9bf99a40f08792986 (patch)
treecea31975973b14e6a7e2879bd43a561ad0bfa59d /lib/axlsx/stylesheet
parent1406b47e64188765f220be86001ec1f543e0157d (diff)
downloadcaxlsx-84a2b255d6fd780f526ac3d9bf99a40f08792986.tar.gz
caxlsx-84a2b255d6fd780f526ac3d9bf99a40f08792986.zip
Fix Layout/LeadingCommentSpace offenses
``` rubocop --only Layout/LeadingCommentSpace -a ```
Diffstat (limited to 'lib/axlsx/stylesheet')
-rw-r--r--lib/axlsx/stylesheet/border_pr.rb4
-rw-r--r--lib/axlsx/stylesheet/color.rb2
-rw-r--r--lib/axlsx/stylesheet/dxf.rb2
-rw-r--r--lib/axlsx/stylesheet/styles.rb8
-rw-r--r--lib/axlsx/stylesheet/xf.rb2
5 files changed, 9 insertions, 9 deletions
diff --git a/lib/axlsx/stylesheet/border_pr.rb b/lib/axlsx/stylesheet/border_pr.rb
index 8300f4bc..3f1054f2 100644
--- a/lib/axlsx/stylesheet/border_pr.rb
+++ b/lib/axlsx/stylesheet/border_pr.rb
@@ -45,9 +45,9 @@ module Axlsx
# @see Axlsx::Border
def initialize(options = {})
parse_options(options)
- #options.each do |o|
+ # options.each do |o|
# self.send("#{o[0]}=", o[1]) if self.respond_to? "#{o[0]}="
- #end
+ # end
end
# @see name
diff --git a/lib/axlsx/stylesheet/color.rb b/lib/axlsx/stylesheet/color.rb
index 4f358a78..d6d204bf 100644
--- a/lib/axlsx/stylesheet/color.rb
+++ b/lib/axlsx/stylesheet/color.rb
@@ -37,7 +37,7 @@ module Axlsx
# no support for theme just yet
# @return [Integer]
- #attr_reader :theme
+ # attr_reader :theme
# The tint value.
# @note valid values are between -1.0 and 1.0
diff --git a/lib/axlsx/stylesheet/dxf.rb b/lib/axlsx/stylesheet/dxf.rb
index a3f15581..516894df 100644
--- a/lib/axlsx/stylesheet/dxf.rb
+++ b/lib/axlsx/stylesheet/dxf.rb
@@ -7,7 +7,7 @@ module Axlsx
# The order in which the child elements is put in the XML seems to
# be important for Excel
CHILD_ELEMENTS = [:font, :numFmt, :fill, :alignment, :border, :protection]
- #does not support extList (ExtensionList)
+ # does not support extList (ExtensionList)
# The cell alignment for this style
# @return [CellAlignment]
diff --git a/lib/axlsx/stylesheet/styles.rb b/lib/axlsx/stylesheet/styles.rb
index 2a210776..ca2c7a8c 100644
--- a/lib/axlsx/stylesheet/styles.rb
+++ b/lib/axlsx/stylesheet/styles.rb
@@ -17,7 +17,7 @@ module Axlsx
require 'axlsx/stylesheet/xf.rb'
require 'axlsx/stylesheet/cell_protection.rb'
- #The Styles class manages worksheet styles
+ # The Styles class manages worksheet styles
# In addition to creating the require style objects for a valid xlsx package, this class provides the key mechanism for adding styles to your workbook, and safely applying them to the cells of your worksheet.
# All portions of the stylesheet are implemented here exception colors, which specify legacy and modified pallete colors, and exLst, whic is used as a future feature data storage area.
# @see Office Open XML Part 1 18.8.11 for gory details on how this stuff gets put together
@@ -468,10 +468,10 @@ module Axlsx
def parse_num_fmt_options(options = {})
return if (options.keys & [:format_code, :num_fmt]).empty?
- #When the user provides format_code - we always need to create a new numFmt object
- #When the type is :dxf we always need to create a new numFmt object
+ # When the user provides format_code - we always need to create a new numFmt object
+ # When the type is :dxf we always need to create a new numFmt object
if options[:format_code] || options[:type] == :dxf
- #If this is a standard xf we pull from numFmts the highest current and increment for num_fmt
+ # If this is a standard xf we pull from numFmts the highest current and increment for num_fmt
options[:num_fmt] ||= (@numFmts.map { |num_fmt| num_fmt.numFmtId }.max + 1) if options[:type] != :dxf
numFmt = NumFmt.new(:numFmtId => options[:num_fmt] || 0, :formatCode => options[:format_code].to_s)
options[:type] == :dxf ? numFmt : (numFmts << numFmt; numFmt.numFmtId)
diff --git a/lib/axlsx/stylesheet/xf.rb b/lib/axlsx/stylesheet/xf.rb
index e7a84a46..e58608f7 100644
--- a/lib/axlsx/stylesheet/xf.rb
+++ b/lib/axlsx/stylesheet/xf.rb
@@ -2,7 +2,7 @@ module Axlsx
# The Xf class defines a formatting record for use in Styles. The recommended way to manage styles for your workbook is with Styles#add_style
# @see Styles#add_style
class Xf
- #does not support extList (ExtensionList)
+ # does not support extList (ExtensionList)
include Axlsx::SerializedAttributes
include Axlsx::OptionsParser