Skip to content

Commit

Permalink
infra(unicorn): no-console-spaces (#2447)
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT authored Oct 8, 2023
1 parent 7c08159 commit f1b4489
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ module.exports = defineConfig({
'unicorn/no-array-push-push': 'off',
'unicorn/no-array-reduce': 'off',
'unicorn/no-await-expression-member': 'off',
'unicorn/no-console-spaces': 'off',
'unicorn/no-for-loop': 'off',
'unicorn/no-hex-escape': 'off',
'unicorn/no-instanceof-array': 'off',
Expand Down
4 changes: 2 additions & 2 deletions test/scripts/apidoc/signature.debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ const methods = loadExampleMethods();
initMarkdownRenderer()
.then(() => {
Object.entries(methods).forEach(([name, method]) => {
console.log('Analyzing: ', name);
console.log('Analyzing:', name);
const result = analyzeSignature(method, '', method.name);
console.log('Result: ', result);
console.log('Result:', result);
});
})
.catch(console.error);

0 comments on commit f1b4489

Please sign in to comment.