Skip to content

Commit dfac043

Browse files
committed
chore: minor clean-up
--- 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: passed - 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 ---
1 parent 4ec1d6d commit dfac043

File tree

3 files changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/_tools/eslint/rules

3 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-list-item-indent/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var rule = require( '@stdlib/_tools/eslint/rules/jsdoc-list-item-indent' );
4242

4343
**Bad**:
4444

45-
<!-- eslint-disable stdlib/jsdoc-list-item-indent, stdlib/jsdoc-list-item-indent, stdlib/jsdoc-markdown-remark -->
45+
<!-- eslint-disable stdlib/jsdoc-list-item-indent, stdlib/jsdoc-markdown-remark -->
4646

4747
```javascript
4848
/**

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-list-item-spacing/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function main( context ) {
5555

5656
opts = {};
5757
options = context.options[ 0 ];
58-
if ( hasOwnProp( options, 'checkBlanks' ) ) {
58+
if ( options && hasOwnProp( options, 'checkBlanks' ) ) {
5959
opts.checkBlanks = options.checkBlanks;
6060
}
6161

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-main-export/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ code = [
101101
'* @module @stdlib/assert/isarray',
102102
'*',
103103
'* @example',
104-
'* var isArray = require( \'@stdlib/assert/is-aray\' );',
104+
'* var isArray = require( \'@stdlib/assert/is-array\' );',
105105
'*',
106106
'* var bool = isArray( [] );',
107107
'* // returns true',
@@ -148,7 +148,7 @@ result = linter.verify( code, {
148148
'column': 1,
149149
'nodeType': null,
150150
'endLine': 14,
151-
'endColumn': 3 } ]
151+
'endColumn': 3
152152
}
153153
]
154154
*/

0 commit comments

Comments
 (0)