From 76585e100fb45d6ffc1d4582f68f965e2b7e4aad Mon Sep 17 00:00:00 2001 From: Dipak Chaudhari <111210939+dchaudhari7177@users.noreply.github.com> Date: Tue, 8 Sep 2026 12:22:21 +0530 Subject: [PATCH] chore: fix EditorConfig lint errors The '/* => ... */' example output block was indented with spaces while .editorconfig sets indent_style = tab for *.js, so the EditorConfig lint job failed on lines 39-51. Re-indent those lines with tabs at the same depth. Indentation only; no other bytes change. --- .../rules/no-builtin-math/examples/index.js | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) 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 + } + ] */