Skip to content

Commit

Permalink
fix: disabled eslint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
vklimontovich committed Nov 29, 2023
1 parent 1a33ab8 commit 225a223
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion configurator/frontend/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"react/jsx-no-target-blank": "off",
"react/display-name": "off",
"react/no-unescaped-entities": "off",
"react/no-unknown-property": "off"
"react/no-unknown-property": "off",
"react/no-deprecated": "off"
//this rule fails on prompt usage as well. We have a few legitimate cases
//where we use promt, so we can't really use it
//"no-alert": "error"
Expand Down

0 comments on commit 225a223

Please sign in to comment.