diff options
| author | Geremia Taglialatela <[email protected]> | 2023-06-13 09:07:54 +0200 |
|---|---|---|
| committer | Geremia Taglialatela <[email protected]> | 2023-06-13 09:07:54 +0200 |
| commit | dd391d24da8e29525fe2c86ea7c32c1f76cfa938 (patch) | |
| tree | 6b8ccc2cea0cbdc9c9255e986daf2c7dcbe0d4c5 /lib/axlsx/stylesheet/styles.rb | |
| parent | 63a58ba6e35f4807710ba5d8935400d7e502cb30 (diff) | |
| download | caxlsx-dd391d24da8e29525fe2c86ea7c32c1f76cfa938.tar.gz caxlsx-dd391d24da8e29525fe2c86ea7c32c1f76cfa938.zip | |
Fix safe Style/Lambda offenses
- Use literal syntax on single line
- Use lambda method on multiple lines
Ref: https://rubystyle.guide/#lambda-multi-line
Diffstat (limited to 'lib/axlsx/stylesheet/styles.rb')
| -rw-r--r-- | lib/axlsx/stylesheet/styles.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/stylesheet/styles.rb b/lib/axlsx/stylesheet/styles.rb index bdda36c7..d9c5683a 100644 --- a/lib/axlsx/stylesheet/styles.rb +++ b/lib/axlsx/stylesheet/styles.rb @@ -380,7 +380,7 @@ module Axlsx end end - validate_border_hash = ->(val) { + validate_border_hash = lambda { |val| unless val.key?(:style) && val.key?(:color) raise ArgumentError, format(ERR_INVALID_BORDER_OPTIONS, options[:border]) end |
