Skip to content

Commit

Permalink
style: clean ups
Browse files Browse the repository at this point in the history
Signed-off-by: Snehil Shah <[email protected]>

---
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: passed
  - 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
---

---
type: pre_push_report
description: Results of running various checks prior to pushing changes.
report:
  - task: run_javascript_examples
    status: na
  - task: run_c_examples
    status: na
  - task: run_cpp_examples
    status: na
  - task: run_javascript_readme_examples
    status: na
  - task: run_c_benchmarks
    status: na
  - task: run_cpp_benchmarks
    status: na
  - task: run_fortran_benchmarks
    status: na
  - task: run_javascript_benchmarks
    status: na
  - task: run_julia_benchmarks
    status: na
  - task: run_python_benchmarks
    status: na
  - task: run_r_benchmarks
    status: na
  - task: run_javascript_tests
    status: na
---

---
type: pre_push_report
description: Results of running various checks prior to pushing changes.
report:
  - task: run_javascript_examples
    status: na
  - task: run_c_examples
    status: na
  - task: run_cpp_examples
    status: na
  - task: run_javascript_readme_examples
    status: na
  - task: run_c_benchmarks
    status: na
  - task: run_cpp_benchmarks
    status: na
  - task: run_fortran_benchmarks
    status: na
  - task: run_javascript_benchmarks
    status: na
  - task: run_julia_benchmarks
    status: na
  - task: run_python_benchmarks
    status: na
  - task: run_r_benchmarks
    status: na
  - task: run_javascript_tests
    status: na
---

---
type: pre_push_report
description: Results of running various checks prior to pushing changes.
report:
  - task: run_javascript_examples
    status: na
  - task: run_c_examples
    status: na
  - task: run_cpp_examples
    status: na
  - task: run_javascript_readme_examples
    status: na
  - task: run_c_benchmarks
    status: na
  - task: run_cpp_benchmarks
    status: na
  - task: run_fortran_benchmarks
    status: na
  - task: run_javascript_benchmarks
    status: na
  - task: run_julia_benchmarks
    status: na
  - task: run_python_benchmarks
    status: na
  - task: run_r_benchmarks
    status: na
  - task: run_javascript_tests
    status: na
---
  • Loading branch information
Snehil-Shah committed Jan 30, 2025
1 parent 36619b0 commit 0f19131
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions lib/node_modules/@stdlib/repl/lib/eager_evaluator.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var ANSI_RESET = ANSI_COLORS[ 'reset' ];
// MAIN //

/**
* Constructor for creating a eager evaluator.
* Constructor for creating an eager evaluator.
*
* @private
* @param {REPL} repl - repl instance
Expand Down Expand Up @@ -205,25 +205,25 @@ setNonEnumerableReadOnly( EagerEvaluator.prototype, 'clear', function clear() {
} );

/**
* Disable the eager-evaluator.
* Disable the eager evaluator.
*
* @name disable
* @memberof EagerEvaluator.prototype
* @type {Function}
* @returns {EagerEvaluator} eager-evaluator instance
* @returns {EagerEvaluator} eager evaluator instance
*/
setNonEnumerableReadOnly( EagerEvaluator.prototype, 'disable', function disable() {
this._enabled = false;
return this;
});

/**
* Enables the eager-evaluator.
* Enables the eager evaluator.
*
* @name enable
* @memberof EagerEvaluator.prototype
* @type {Function}
* @returns {EagerEvaluator} eager-evaluator instance
* @returns {EagerEvaluator} eager evaluator instance
*/
setNonEnumerableReadOnly( EagerEvaluator.prototype, 'enable', function enable() {
this._enabled = true;
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ var debug = logger( 'repl' );
* @param {boolean} [options.settings.completionPreviews] - boolean indicating whether to enable completion previews for auto-completion
* @param {boolean} [options.settings.autoDisableBracketedPasteOnExit] - boolean indicating whether to automatically disable bracketed-paste upon exiting the REPL
* @param {boolean} [options.settings.syntaxHighlighting] - boolean indicating whether to enable syntax highlighting
* @param {boolean} [options.settings.eagerEvaluation] - boolean indicating whether to enable eagerEvaluation
* @param {boolean} [options.settings.eagerEvaluation] - boolean indicating whether to enable eager evaluation
* @param {string} [options.settings.theme] - initial color theme for syntax highlighting
* @throws {Error} must provide valid options
* @returns {REPL} REPL instance
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/lib/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ var SETTINGS = {
'type': 'boolean'
},
'eagerEvaluation': {
'desc': 'Enable eager evaluation',
'desc': 'Enable eager evaluation.',
'type': 'boolean'
},
'theme': {
Expand Down

0 comments on commit 0f19131

Please sign in to comment.