Closed perennialAutodidact closed 1 year ago
This one again is working for me on the frontend but not the backend. This isn't giving me linting errors.
console.warn
and console.error
are both allowed in the backend repo. The frontend repo only allows console.warn
Try hitting Cmd + Shift + P and entering Developer: Restart Extension Host and see if it makes the warnings appear. This fixed it for me.
It looks like this branch has conflicts with dev.
## Description of changes
no-console
rule to ESLint config, disallowingconsole.log
, but allowingconsole.warn
andconsole.error
in the back end package andconsole.warn
in the front end packageTest steps
backend/app.js
, add aconsole.log
,console.warn
, andconsole.error
frontend/app.jsx
, add aconsole.log
,console.warn
andconsole.error
.