diff --git a/lib/node_modules/@stdlib/_tools/eslint/rules/no-builtin-math/examples/index.js b/lib/node_modules/@stdlib/_tools/eslint/rules/no-builtin-math/examples/index.js index 2e519021d354..b440ba680025 100644 --- a/lib/node_modules/@stdlib/_tools/eslint/rules/no-builtin-math/examples/index.js +++ b/lib/node_modules/@stdlib/_tools/eslint/rules/no-builtin-math/examples/index.js @@ -36,17 +36,17 @@ result = linter.verify( code, { }); console.log( result ); /* => - [ - { - 'ruleId': 'no-builtin-math', - 'severity': 2, - 'message': 'Use the package `@stdlib/math/base/special/sqrt` instead of `Math.sqrt`', - 'line': 1, - 'column': 9, - 'nodeType': 'MemberExpression', - 'source': 'var y = Math.sqrt( 9.0 );', - 'endLine': 1, - 'endColumn': 18 - } - ] + [ + { + 'ruleId': 'no-builtin-math', + 'severity': 2, + 'message': 'Use the package `@stdlib/math/base/special/sqrt` instead of `Math.sqrt`', + 'line': 1, + 'column': 9, + 'nodeType': 'MemberExpression', + 'source': 'var y = Math.sqrt( 9.0 );', + 'endLine': 1, + 'endColumn': 18 + } + ] */