Skip to content

Commit

Permalink
feat: add eslint rule for noconsole (#3109)
Browse files Browse the repository at this point in the history
* feat: add eslint rule for noconsole

* testing

* testing

* Update my-expenses.page.ts
  • Loading branch information
suyashpatil78 authored Jun 26, 2024
1 parent be13fd1 commit eaed409
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@
"@typescript-eslint/no-empty-function": ["error"],
"@typescript-eslint/no-empty-interface": ["error"],
"@typescript-eslint/no-inferrable-types": ["error"],
"no-unused-expressions": ["error"]
"no-unused-expressions": ["error"],
"no-console": ["error", { "allow": [""] }]
}
},
{
Expand Down

0 comments on commit eaed409

Please sign in to comment.