Skip to content

Commit acc5f03

Browse files
committed
chore(tooling): disable console log
Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
1 parent 849aaa2 commit acc5f03

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/core/patch/slots.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,6 @@ async function patchSlots() {
5858
}
5959

6060
patchSlots()
61+
// eslint-disable-next-line no-console
6162
.then(() => console.log('slots patched'))
6263
.catch(console.error)

tooling/eslint-config/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module.exports = {
33
plugins: ['prettier'],
44
rules: {
55
'vue/no-setup-props-destructure': 0,
6-
'no-console': 0,
6+
'no-console': ['error', { allow: ['warn', 'error'] }],
77
'unused-imports/no-unused-vars': 0,
88
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }],
99
'prettier/prettier': [

0 commit comments

Comments
 (0)