Skip to content

Commit 7078832

Browse files
build(lint): disallow usage of console in code (#50)
Closes #49 --------- Co-authored-by: StyleShit <[email protected]>
1 parent fd02b8d commit 7078832

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

eslint.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,8 @@ export default tseslint.config(
2424
'**/node_modules/**',
2525
'**/__snapshots__/**',
2626
],
27+
rules: {
28+
'no-console': 'error',
29+
},
2730
},
2831
);

0 commit comments

Comments
 (0)