Remove debugging statements or use a logging library
console.log(x);
1import {shallowCopy} from 'shared-runtime';23function Component(props) {4 const x = shallowCopy(props);5 // These calls should view x as readonly and be grouped outside of the reactive scope for x:6 console.log(x);7 console.info(x);8 console.warn(x);9 console.error(x);10 console.trace(x);11 console.table(x);12 global.console.log(x);13 return x;14}1516export const FIXTURE_ENTRYPOINT = {17 fn: Component,18 params: [{a: 1, b: 2}],19 isComponent: false,20};
Same data, no extra tab — call code_get_file + code_get_findings over MCP from Claude/Cursor/Copilot.