aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorST-DDT <[email protected]>2023-10-08 16:49:30 +0200
committerGitHub <[email protected]>2023-10-08 16:49:30 +0200
commitf1b44894edf2de88133ed40ac014499884ede7ba (patch)
tree3837333d17ec5c8f1fb9643379f9307ffc43bde8
parent7c081596f941c484b12331eedc8a5926e1fdb07b (diff)
downloadfaker-f1b44894edf2de88133ed40ac014499884ede7ba.tar.xz
faker-f1b44894edf2de88133ed40ac014499884ede7ba.zip
infra(unicorn): no-console-spaces (#2447)
-rw-r--r--.eslintrc.js1
-rw-r--r--test/scripts/apidoc/signature.debug.ts4
2 files changed, 2 insertions, 3 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index d1127128..1e7f2399 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -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',
diff --git a/test/scripts/apidoc/signature.debug.ts b/test/scripts/apidoc/signature.debug.ts
index 347b8235..a9ec8fd0 100644
--- a/test/scripts/apidoc/signature.debug.ts
+++ b/test/scripts/apidoc/signature.debug.ts
@@ -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);