We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 + ':');
The text was updated successfully, but these errors were encountered:
No branches or pull requests
i use visual source code.
When error(or warning) occurs in eslint, i cannot jump to VS Code.
because output as follows......
Therefore, I would like to change the output to the following.
Now, i edited 'node_modules/eslintFormatter.js' as follows.
The text was updated successfully, but these errors were encountered: