Skip to content

Commit

Permalink
disabling eslint "no-is-mounted" for legacy side/side code.
Browse files Browse the repository at this point in the history
  • Loading branch information
PhillipsOwen committed Sep 12, 2024
1 parent 1abc314 commit a871a9a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ export default [
"prefer-const": "warn",
"no-dupe-args": "warn",
"no-dupe-keys": "warn",
"react/display-name": "off"
"react/display-name": "off",
"react/no-is-mounted": "off"
// ,"no-console": ["error", { allow: ["warn", "error"] }]
},
linterOptions: { reportUnusedDisableDirectives: "error" }
Expand Down

0 comments on commit a871a9a

Please sign in to comment.