Skip to content

Commit 4977c81

Browse files
committed
fix:lint errors
1 parent a70ac60 commit 4977c81

File tree

11 files changed

+51
-51
lines changed

11 files changed

+51
-51
lines changed

lib/node_modules/@stdlib/math/base/special/gammaincinv/benchmark/benchmark.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2018-2025 The Stdlib Authors.
4+
* Copyright (c) 2018 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
88
* You may obtain a copy of the License at
99
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* http://www.apache.org/licenses/LICENSE-2.0
1111
*
1212
* Unless required by applicable law or agreed to in writing, software
1313
* distributed under the License is distributed on an "AS IS" BASIS,

lib/node_modules/@stdlib/math/base/special/gammaincinv/benchmark/c/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# @license Apache-2.0
33
#
4-
# Copyright (c) 2018-2025 The Stdlib Authors.
4+
# Copyright (c) 2018 The Stdlib Authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

lib/node_modules/@stdlib/math/base/special/gammaincinv/benchmark/c/benchmark.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2018-2025 The Stdlib Authors.
4+
* Copyright (c) 2018 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
88
* You may obtain a copy of the License at
99
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* http://www.apache.org/licenses/LICENSE-2.0
1111
*
1212
* Unless required by applicable law or agreed to in writing, software
1313
* distributed under the License is distributed on an "AS IS" BASIS,

lib/node_modules/@stdlib/math/base/special/gammaincinv/binding.gyp

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -21,45 +21,45 @@
2121
{
2222
"target_name": "math.base.special.gammaincinv",
2323
"include_dirs": [
24-
"<!(node -e \"require('path').join(require.resolve('@stdlib/math/base/special/gammaincinv'),'..','..','include')\")",
25-
"<!(node -e \"require('path').join(require.resolve('@stdlib/math/base/assert/is-nan'),'..','..','include')\")",
26-
"<!(node -e \"require('path').join(require.resolve('@stdlib/math/base/special/abs'),'..','..','include')\")",
27-
"<!(node -e \"require('path').join(require.resolve('@stdlib/math/base/special/erfcinv'),'..','..','include')\")",
28-
"<!(node -e \"require('path').join(require.resolve('@stdlib/math/base/special/exp'),'..','..','include')\")",
29-
"<!(node -e \"require('path').join(require.resolve('@stdlib/math/base/special/gamma'),'..','..','include')\")",
30-
"<!(node -e \"require('path').join(require.resolve('@stdlib/math/base/special/gammainc'),'..','..','include')\")",
31-
"<!(node -e \"require('path').join(require.resolve('@stdlib/math/base/special/gammaln'),'..','..','include')\")",
32-
"<!(node -e \"require('path').join(require.resolve('@stdlib/math/base/special/ln'),'..','..','include')\")",
33-
"<!(node -e \"require('path').join(require.resolve('@stdlib/math/base/special/pow'),'..','..','include')\")",
34-
"<!(node -e \"require('path').join(require.resolve('@stdlib/math/base/special/sqrt'),'..','..','include')\")",
35-
"<!(node -e \"require('path').join(require.resolve('@stdlib/constants/float32/max'),'..','..','include')\")",
36-
"<!(node -e \"require('path').join(require.resolve('@stdlib/constants/float32/smallest-normal'),'..','..','include')\")",
37-
"<!(node -e \"require('path').join(require.resolve('@stdlib/constants/float64/ln-sqrt-two-pi'),'..','..','include')\")",
38-
"<!(node -e \"require('path').join(require.resolve('@stdlib/constants/float64/pinf'),'..','..','include')\")",
39-
"<!(node -e \"require('path').join(require.resolve('@stdlib/constants/float64/sqrt-two-pi'),'..','..','include')\")",
40-
"<!(node -e \"require('path').join(require.resolve('@stdlib/constants/float64/two-pi'),'..','..','include')\")"
24+
"include", # Self
25+
"../../assert/is-nan/include", # Dependency includes...
26+
"../abs/include",
27+
"../erfcinv/include",
28+
"../exp/include",
29+
"../gamma/include",
30+
"../gammainc/include",
31+
"../gammaln/include",
32+
"../ln/include",
33+
"../pow/include",
34+
"../sqrt/include",
35+
"../../../../constants/float32/max/include",
36+
"../../../../constants/float32/smallest-normal/include",
37+
"../../../../constants/float64/ln-sqrt-two-pi/include",
38+
"../../../../constants/float64/pinf/include",
39+
"../../../../constants/float64/sqrt-two-pi/include",
40+
"../../../../constants/float64/two-pi/include"
4141
],
4242
"sources": [
4343
"src/main.c",
4444
"src/stdlib_base_special_gammaincinv.h"
4545
],
4646
"dependencies": [
47-
"<!(node -e \"require.resolve('@stdlib/math/base/assert/is-nan').replace('index.js','binding.gyp')\")",
48-
"<!(node -e \"require.resolve('@stdlib/math/base/special/abs').replace('index.js','binding.gyp')\")",
49-
"<!(node -e \"require.resolve('@stdlib/math/base/special/erfcinv').replace('index.js','binding.gyp')\")",
50-
"<!(node -e \"require.resolve('@stdlib/math/base/special/exp').replace('index.js','binding.gyp')\")",
51-
"<!(node -e \"require.resolve('@stdlib/math/base/special/gamma').replace('index.js','binding.gyp')\")",
52-
"<!(node -e \"require.resolve('@stdlib/math/base/special/gammainc').replace('index.js','binding.gyp')\")",
53-
"<!(node -e \"require.resolve('@stdlib/math/base/special/gammaln').replace('index.js','binding.gyp')\")",
54-
"<!(node -e \"require.resolve('@stdlib/math/base/special/ln').replace('index.js','binding.gyp')\")",
55-
"<!(node -e \"require.resolve('@stdlib/math/base/special/pow').replace('index.js','binding.gyp')\")",
56-
"<!(node -e \"require.resolve('@stdlib/math/base/special/sqrt').replace('index.js','binding.gyp')\")",
57-
"<!(node -e \"require.resolve('@stdlib/constants/float32/max').replace('index.js','binding.gyp')\")",
58-
"<!(node -e \"require.resolve('@stdlib/constants/float32/smallest-normal').replace('index.js','binding.gyp')\")",
59-
"<!(node -e \"require.resolve('@stdlib/constants/float64/ln-sqrt-two-pi').replace('index.js','binding.gyp')\")",
60-
"<!(node -e \"require.resolve('@stdlib/constants/float64/pinf').replace('index.js','binding.gyp')\")",
61-
"<!(node -e \"require.resolve('@stdlib/constants/float64/sqrt-two-pi').replace('index.js','binding.gyp')\")",
62-
"<!(node -e \"require.resolve('@stdlib/constants/float64/two-pi').replace('index.js','binding.gyp')\")"
47+
"../../assert/is-nan/binding.gyp", # Dependency gyp files...
48+
"../abs/binding.gyp",
49+
"../erfcinv/binding.gyp",
50+
"../exp/binding.gyp",
51+
"../gamma/binding.gyp",
52+
"../gammainc/binding.gyp",
53+
"../gammaln/binding.gyp",
54+
"../ln/binding.gyp",
55+
"../pow/binding.gyp",
56+
"../sqrt/binding.gyp",
57+
"../../../../constants/float32/max/binding.gyp",
58+
"../../../../constants/float32/smallest-normal/binding.gyp",
59+
"../../../../constants/float64/ln-sqrt-two-pi/binding.gyp",
60+
"../../../../constants/float64/pinf/binding.gyp",
61+
"../../../../constants/float64/sqrt-two-pi/binding.gyp",
62+
"../../../../constants/float64/two-pi/binding.gyp"
6363
]
6464
}
6565
]

lib/node_modules/@stdlib/math/base/special/gammaincinv/examples/c/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# @license Apache-2.0
33
#
4-
# Copyright (c) 2018-2025 The Stdlib Authors.
4+
# Copyright (c) 2018 The Stdlib Authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

lib/node_modules/@stdlib/math/base/special/gammaincinv/examples/c/example.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2018-2025 The Stdlib Authors.
4+
* Copyright (c) 2018 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
88
* You may obtain a copy of the License at
99
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* http://www.apache.org/licenses/LICENSE-2.0
1111
*
1212
* Unless required by applicable law or agreed to in writing, software
1313
* distributed under the License is distributed on an "AS IS" BASIS,

lib/node_modules/@stdlib/math/base/special/gammaincinv/include/stdlib/math/base/special/gammaincinv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2018-2025 The Stdlib Authors.
4+
* Copyright (c) 2018 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
88
* You may obtain a copy of the License at
99
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* http://www.apache.org/licenses/LICENSE-2.0
1111
*
1212
* Unless required by applicable law or agreed to in writing, software
1313
* distributed under the License is distributed on an "AS IS" BASIS,

lib/node_modules/@stdlib/math/base/special/gammaincinv/lib/native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2018-2025 The Stdlib Authors.
4+
* Copyright (c) 2018 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
88
* You may obtain a copy of the License at
99
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* http://www.apache.org/licenses/LICENSE-2.0
1111
*
1212
* Unless required by applicable law or agreed to in writing, software
1313
* distributed under the License is distributed on an "AS IS" BASIS,

lib/node_modules/@stdlib/math/base/special/gammaincinv/src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2018-2025 The Stdlib Authors.
4+
* Copyright (c) 2018 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
88
* You may obtain a copy of the License at
99
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* http://www.apache.org/licenses/LICENSE-2.0
1111
*
1212
* Unless required by applicable law or agreed to in writing, software
1313
* distributed under the License is distributed on an "AS IS" BASIS,

lib/node_modules/@stdlib/math/base/special/gammaincinv/src/stdlib_base_special_gammaincinv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2018-2025 The Stdlib Authors.
4+
* Copyright (c) 2018 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
88
* You may obtain a copy of the License at
99
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* http://www.apache.org/licenses/LICENSE-2.0
1111
*
1212
* Unless required by applicable law or agreed to in writing, software
1313
* distributed under the License is distributed on an "AS IS" BASIS,

0 commit comments

Comments
 (0)