You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[1]> vp check --fix src/index.js # real lint error with --fix and paths (suppress_unmatched active), error must not be swallowed
error: Lint issues found
× eslint(no-eval): eval can be harmful.
╭─[src/index.js:2:3]
1 │ function hello() {
2 │ eval("code");
· ────
3 │ return "hello";
╰────
help: Avoid eval(). For JSON parsing use JSON.parse(); for dynamic property access use bracket notation (obj[key]); for other cases refactor to avoid evaluating strings as code.
Found 1 error and 0 warnings in 1 file (<variable>ms, <variable> threads)