From f5159e22258d89db4dc3cf1da98498992af02fd8 Mon Sep 17 00:00:00 2001 From: Deepak Singh <20bcs102@nith.ac.in> Date: Thu, 5 Jun 2025 18:04:12 +0530 Subject: [PATCH 1/2] chore: fix EditorConfig lint errors (issue #7215) --- 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: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - 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 --- --- .../browser-build/lib/defaults.json | 10 +-- .../typedarray-type-to-dtype/manifest.json | 76 +++++++++---------- 2 files changed, 43 insertions(+), 43 deletions(-) diff --git a/lib/node_modules/@stdlib/_tools/benchmarks/browser-build/lib/defaults.json b/lib/node_modules/@stdlib/_tools/benchmarks/browser-build/lib/defaults.json index 90af92c8aeec..c09ec6514019 100644 --- a/lib/node_modules/@stdlib/_tools/benchmarks/browser-build/lib/defaults.json +++ b/lib/node_modules/@stdlib/_tools/benchmarks/browser-build/lib/defaults.json @@ -1,7 +1,7 @@ { - "pattern": "**/benchmark*.js", - "bundle": "benchmark_bundle.js", - "mount": "/", - "html": "benchmarks.html", - "title": "Benchmarks" + "pattern": "**/benchmark*.js", + "bundle": "benchmark_bundle.js", + "mount": "/", + "html": "benchmarks.html", + "title": "Benchmarks" } diff --git a/lib/node_modules/@stdlib/ndarray/base/napi/typedarray-type-to-dtype/manifest.json b/lib/node_modules/@stdlib/ndarray/base/napi/typedarray-type-to-dtype/manifest.json index 5ba1cb7bb4f8..b54f796a5d53 100644 --- a/lib/node_modules/@stdlib/ndarray/base/napi/typedarray-type-to-dtype/manifest.json +++ b/lib/node_modules/@stdlib/ndarray/base/napi/typedarray-type-to-dtype/manifest.json @@ -1,40 +1,40 @@ { - "options": {}, - "fields": [ - { - "field": "src", - "resolve": true, - "relative": true - }, - { - "field": "include", - "resolve": true, - "relative": true - }, - { - "field": "libraries", - "resolve": false, - "relative": false - }, - { - "field": "libpath", - "resolve": true, - "relative": false - } - ], - "confs": [ - { - "src": [ - "./src/main.c" - ], - "include": [ - "./include" - ], - "libraries": [], - "libpath": [], - "dependencies": [ - "@stdlib/ndarray/dtypes" - ] - } - ] + "options": {}, + "fields": [ + { + "field": "src", + "resolve": true, + "relative": true + }, + { + "field": "include", + "resolve": true, + "relative": true + }, + { + "field": "libraries", + "resolve": false, + "relative": false + }, + { + "field": "libpath", + "resolve": true, + "relative": false + } + ], + "confs": [ + { + "src": [ + "./src/main.c" + ], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [ + "@stdlib/ndarray/dtypes" + ] + } + ] } From e0ff19be9296e3370ea94a38feeb81023b221730 Mon Sep 17 00:00:00 2001 From: Deepak Singh <20bcs102@nith.ac.in> Date: Fri, 6 Jun 2025 11:38:52 +0530 Subject: [PATCH 2/2] chore: trigger CI --- 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: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - 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 ---