Skip to content

Commit c84e9f7

Browse files
committed
fix: resolved eslint errors
1 parent 0cee8dc commit c84e9f7

File tree

338 files changed

+29851
-32986
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

338 files changed

+29851
-32986
lines changed

.clang-format

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -856,11 +856,11 @@ IncludeCategories:
856856
Priority: 3
857857

858858
# Built-in headers (e.g., `<stdint.h>`) should always come at the end...
859-
- Regex: '<[[:alnum:].]+>'
859+
- Regex: "<[[:alnum:].]+>"
860860
Priority: 4
861861

862862
# All other headers (e.g., those resolved using relative paths) should come first...
863-
- Regex: '.*'
863+
- Regex: ".*"
864864
Priority: 1
865865

866866
#/

.codecov.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ codecov:
2828
# Default branch to show (if not set, inherited from repository settings):
2929
branch: develop
3030

31-
3231
coverage:
3332
# Number of decimals to display in UI:
3433
precision: 4
@@ -93,7 +92,6 @@ coverage:
9392
# If CI fails, report an "error" commit status:
9493
if_ci_failed: error
9594

96-
9795
# Comment settings:
9896
comment:
9997
layout: "header, diff, changes, sunburst, uncovered, tree"

.commitlintrc.js

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
11
/**
2-
* @license Apache-2.0
3-
*
4-
* Copyright (c) 2023 The Stdlib Authors.
5-
*
6-
* Licensed under the Apache License, Version 2.0 (the "License");
7-
* you may not use this file except in compliance with the License.
8-
* You may obtain a copy of the License at
9-
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
11-
*
12-
* Unless required by applicable law or agreed to in writing, software
13-
* distributed under the License is distributed on an "AS IS" BASIS,
14-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15-
* See the License for the specific language governing permissions and
16-
* limitations under the License.
17-
*/
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2023 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
1818

19-
'use strict';
19+
"use strict";
2020

2121
// MODULES //
2222

23-
var config = require( './etc/commitlint/.commitlintrc.js' ); // eslint-disable-line node/no-unpublished-require
24-
23+
var config = require("./etc/commitlint/.commitlintrc.js"); // eslint-disable-line node/no-unpublished-require
2524

2625
// EXPORTS //
2726

.devcontainer/README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,9 @@ This folder includes configuration for developing the project in a local contain
5757
<section class="links">
5858

5959
[dev-container-image]: https://img.shields.io/static/v1?label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode
60-
6160
[dev-container-url]: https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/stdlib-js/stdlib
62-
6361
[github-codespaces]: https://github.com/features/codespaces
64-
6562
[github-codespaces-image]: https://github.com/codespaces/badge.svg
66-
6763
[github-codespaces-url]: https://codespaces.new/stdlib-js/stdlib
6864

6965
</section>

.devcontainer/devcontainer.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@
1010
"postCreateCommand": "./.devcontainer/post-create",
1111
"customizations": {
1212
"codespaces": {
13-
"openFiles": [
14-
"README.md"
15-
]
13+
"openFiles": ["README.md"]
1614
},
1715
"vscode": {
1816
"settings": {

.eslintrc.js

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
11
/**
2-
* @license Apache-2.0
3-
*
4-
* Copyright (c) 2018 The Stdlib Authors.
5-
*
6-
* Licensed under the Apache License, Version 2.0 (the "License");
7-
* you may not use this file except in compliance with the License.
8-
* You may obtain a copy of the License at
9-
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
11-
*
12-
* Unless required by applicable law or agreed to in writing, software
13-
* distributed under the License is distributed on an "AS IS" BASIS,
14-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15-
* See the License for the specific language governing permissions and
16-
* limitations under the License.
17-
*/
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2018 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
1818

19-
'use strict';
19+
"use strict";
2020

2121
// MODULES //
2222

23-
var eslint = require( './etc/eslint/.eslintrc.overrides.js' );
24-
23+
var eslint = require("./etc/eslint/.eslintrc.overrides.js");
2524

2625
// EXPORTS //
2726

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,3 @@ contact_links:
2626
- name: 👏 Support Us
2727
url: https://github.com/stdlib-js/stdlib/blob/develop/docs/support_the_project.md
2828
about: Want to help support the project? 😍
29-

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ Resolves #{{TODO: add issue number}}.
66
77
This pull request:
88

9-
- {{TODO: add description describing what this pull request does}}
9+
- {{TODO: add description describing what this pull request does}}
1010

1111
## Related Issues
1212

1313
> Does this pull request have any related issues?
1414
1515
This pull request:
1616

17-
- resolves #{{TODO: add issue number}}
17+
- resolves #{{TODO: add issue number}}
1818

1919
## Questions
2020

@@ -32,9 +32,9 @@ No.
3232

3333
> Please ensure the following tasks are completed before submitting this pull request.
3434
35-
- [ ] Read, understood, and followed the [contributing guidelines][contributing].
35+
- [ ] Read, understood, and followed the [contributing guidelines][contributing].
3636

37-
* * *
37+
---
3838

3939
@stdlib-js/reviewers
4040

.github/codeql/codeql_config.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ name: codeql_configuration
2020

2121
# Define paths for which code scanning should be performed:
2222
paths:
23-
- 'lib'
23+
- "lib"
2424

2525
# Define paths for which code scanning should *not* be performed:
2626
paths-ignore:
27-
- '**/_tools'
28-
- '**/test/*.js'
29-
- '**/test/**/*.js'
30-
- '**/benchmark/*.js'
31-
- '**/benchmark/**/*.js'
32-
- '**/examples/*.js'
33-
- '**/examples/**/*.js'
34-
- '**/data'
35-
- '**/scripts'
36-
- '**/etc'
37-
- '**/docs'
27+
- "**/_tools"
28+
- "**/test/*.js"
29+
- "**/test/**/*.js"
30+
- "**/benchmark/*.js"
31+
- "**/benchmark/**/*.js"
32+
- "**/examples/*.js"
33+
- "**/examples/**/*.js"
34+
- "**/data"
35+
- "**/scripts"
36+
- "**/etc"
37+
- "**/docs"

.github/dependabot.yml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -18,32 +18,32 @@
1818

1919
version: 2
2020
updates:
21-
- package-ecosystem: github-actions
22-
directory: "/"
23-
schedule:
24-
interval: monthly
25-
ignore:
26-
- dependency-name: "distributhor/workflow-webhook"
21+
- package-ecosystem: github-actions
22+
directory: "/"
23+
schedule:
24+
interval: monthly
25+
ignore:
26+
- dependency-name: "distributhor/workflow-webhook"
2727

28-
- package-ecosystem: npm
29-
directory: "/"
30-
schedule:
31-
interval: monthly
32-
open-pull-requests-limit: 10
33-
allow:
34-
- dependency-name: "*"
35-
dependency-type: "production"
36-
ignore:
37-
- dependency-name: "remark*"
38-
- dependency-name: "chai"
39-
- dependency-name: "debug"
40-
- dependency-name: "ajv"
41-
- dependency-name: "d3-scale"
42-
- dependency-name: "d3-shape"
43-
- dependency-name: "d3-time-format"
44-
- dependency-name: "d3-format"
45-
- dependency-name: "readable-stream"
46-
- dependency-name: "mkdirp"
47-
- dependency-name: "semver"
48-
- dependency-name: "glob"
49-
- dependency-name: "node-gyp"
28+
- package-ecosystem: npm
29+
directory: "/"
30+
schedule:
31+
interval: monthly
32+
open-pull-requests-limit: 10
33+
allow:
34+
- dependency-name: "*"
35+
dependency-type: "production"
36+
ignore:
37+
- dependency-name: "remark*"
38+
- dependency-name: "chai"
39+
- dependency-name: "debug"
40+
- dependency-name: "ajv"
41+
- dependency-name: "d3-scale"
42+
- dependency-name: "d3-shape"
43+
- dependency-name: "d3-time-format"
44+
- dependency-name: "d3-format"
45+
- dependency-name: "readable-stream"
46+
- dependency-name: "mkdirp"
47+
- dependency-name: "semver"
48+
- dependency-name: "glob"
49+
- dependency-name: "node-gyp"

0 commit comments

Comments
 (0)