Open
Description
i use visual source code.
When error(or warning) occurs in eslint, i cannot jump to VS Code.
because output as follows......
src\AddTodo.tsx
Line 1:10: 'AnyAction' is defined but never used @typescript-eslint/no-unused-vars
Therefore, I would like to change the output to the following.
src\AddTodo.tsx
C:\work\src\AddTodo.tsx:1:10: 'AnyAction' is defined but never used @typescript-eslint/no-unused-vars
Now, i edited 'node_modules/eslintFormatter.js' as follows.
let position = chalk.bold(result.filePath + ':' + line + ':');