Skip to content

Commit 1ba5734

Browse files
committed
fix: linting erros
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: passed - task: lint_c_benchmarks status: passed - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 0fb98d8 commit 1ba5734

File tree

9 files changed

+22
-21
lines changed

9 files changed

+22
-21
lines changed

lib/node_modules/@stdlib/stats/base/dists/arcsine/quantile/benchmark/c/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ run: $(c_targets)
143143
clean:
144144
$(QUIET) -rm -f *.o *.out
145145

146-
.PHONY: clean
146+
.PHONY: clean

lib/node_modules/@stdlib/stats/base/dists/arcsine/quantile/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,4 @@ int main( void ) {
139139
printf( "ok %d benchmark finished\n", i+1 );
140140
}
141141
print_summary( REPEATS, REPEATS );
142-
}
142+
}

lib/node_modules/@stdlib/stats/base/dists/arcsine/quantile/binding.gyp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,4 +167,4 @@
167167
], # end actions
168168
}, # end target copy_addon
169169
], # end targets
170-
}
170+
}

lib/node_modules/@stdlib/stats/base/dists/arcsine/quantile/examples/c/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ run: $(c_targets)
143143
clean:
144144
$(QUIET) -rm -f *.o *.out
145145

146-
.PHONY: clean
146+
.PHONY: clean

lib/node_modules/@stdlib/stats/base/dists/arcsine/quantile/examples/c/example.c

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,17 @@ static double random_uniform( const double min, const double max ) {
2626
}
2727

2828
int main(void){
29-
double p;
30-
double a;
31-
double b;
32-
double y;
33-
int i;
29+
double p;
30+
double a;
31+
double b;
32+
double y;
33+
int i;
3434

35-
for ( i = 0; i < 25; i++ ) {
36-
p = random_uniform( 0.0, 1.0);
37-
a = random_uniform( -20.0, 0.0);
38-
b = random_uniform( a, a+40.0 );
35+
for ( i = 0; i < 25; i++ ) {
36+
p = random_uniform( 0.0, 1.0);
37+
a = random_uniform( -20.0, 0.0);
38+
b = random_uniform( a, a+40.0 );
3939
y = stdlib_base_dists_arcsine_quantile( p, a, b );
40-
printf( "p: %lf, a: %lf, b: %lf, Q(p;a,b): %lf\n", p, a, b, y );
41-
}
42-
}
40+
printf( "p: %lf, a: %lf, b: %lf, Q(p;a,b): %lf\n", p, a, b, y );
41+
}
42+
}

lib/node_modules/@stdlib/stats/base/dists/arcsine/quantile/include.gypi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@
5050
'<!@(node -e "var arr = require(\'@stdlib/utils/library-manifest\')(\'./manifest.json\',{},{\'basedir\':process.cwd(),\'paths\':\'posix\'}).libpath; for ( var i = 0; i < arr.length; i++ ) { console.log( arr[ i ] ); }")',
5151
],
5252
}, # end variables
53-
}
53+
}

lib/node_modules/@stdlib/stats/base/dists/arcsine/quantile/manifest.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"@stdlib/math/base/assert/is-nan",
6161
"@stdlib/math/base/special/sin",
6262
"@stdlib/math/base/special/pow",
63-
"@stdlib/constants/float64/half-pi"
63+
"@stdlib/constants/float64/half-pi"
6464
]
6565
},
6666
{
@@ -82,4 +82,5 @@
8282
]
8383
}
8484
]
85-
}
85+
}
86+

lib/node_modules/@stdlib/stats/base/dists/arcsine/quantile/src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ clean-addon:
6767
#/
6868
clean: clean-addon
6969

70-
.PHONY: clean
70+
.PHONY: clean

lib/node_modules/@stdlib/stats/base/dists/arcsine/quantile/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ double stdlib_base_dists_arcsine_quantile( const double p, const double a, const
4848
return 0.0/0.0;;
4949
}
5050
return a + ( stdlib_base_pow( stdlib_base_sin( STDLIB_CONSTANT_FLOAT64_HALF_PI*p ), 2.0 ) * ( b-a ) );
51-
}
51+
}

0 commit comments

Comments
 (0)