Skip to content

Commit 2be7670

Browse files
chore: fix EditorConfig lint errors #6925
Signed-off-by: Lalit Narayan Yadav <[email protected]>
1 parent 042646e commit 2be7670

File tree

1 file changed

+16
-16
lines changed
  • lib/node_modules/@stdlib/_tools/scaffold/math-strided-binary-by/scripts

1 file changed

+16
-16
lines changed

lib/node_modules/@stdlib/_tools/scaffold/math-strided-binary-by/scripts/scaffold.sh

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,14 @@ rand_max=${RAND_MAX:-'10.0'}
9090
# Define a list of values for first input array:
9191
if [[ -z "${X_VALUES_LEN_8:-}" ]]; then
9292
x_values_len_8=(
93-
'1.0'
94-
'2.0'
95-
'3.0'
96-
'4.0'
97-
'5.0'
98-
'6.0'
99-
'7.0'
100-
'8.0'
93+
'1.0'
94+
'2.0'
95+
'3.0'
96+
'4.0'
97+
'5.0'
98+
'6.0'
99+
'7.0'
100+
'8.0'
101101
)
102102
else
103103
IFS=','; read -ra x_values_len_8 <<< "${X_VALUES_LEN_8}"; IFS=' ';
@@ -106,14 +106,14 @@ fi
106106
# Define a list of values for second input array:
107107
if [[ -z "${Y_VALUES_LEN_8:-}" ]]; then
108108
y_values_len_8=(
109-
'11.0'
110-
'12.0'
111-
'13.0'
112-
'14.0'
113-
'15.0'
114-
'16.0'
115-
'17.0'
116-
'18.0'
109+
'11.0'
110+
'12.0'
111+
'13.0'
112+
'14.0'
113+
'15.0'
114+
'16.0'
115+
'17.0'
116+
'18.0'
117117
)
118118
else
119119
IFS=','; read -ra y_values_len_8 <<< "${Y_VALUES_LEN_8}"; IFS=' ';

0 commit comments

Comments
 (0)