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
Cmd-. an eslint error, select "Disable @peggyjs/no-unused-rules for the entire file", you get this added to the top of the file:
/** eslint-disable @peggyjs/no-unused-rules */
This doesn't work because of the extra asterisk at the beginning. What is desired is this:
/* eslint-disable @peggyjs/no-unused-rules */
See https://github.com/microsoft/vscode-eslint/blob/1fa8e21b20f83987d349ac500a571194695117a3/server/src/eslintServer.ts#L699 for where the insertion happens. getBlockComment should return [ "/*", "*/" ] as far as I can see, so I don't know why this is happening.
getBlockComment
[ "/*", "*/" ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Cmd-. an eslint error, select "Disable @peggyjs/no-unused-rules for the entire file", you get this added to the top of the file:
/** eslint-disable @peggyjs/no-unused-rules */
This doesn't work because of the extra asterisk at the beginning. What is desired is this:
/* eslint-disable @peggyjs/no-unused-rules */
See https://github.com/microsoft/vscode-eslint/blob/1fa8e21b20f83987d349ac500a571194695117a3/server/src/eslintServer.ts#L699 for where the insertion happens.
getBlockComment
should return[ "/*", "*/" ]
as far as I can see, so I don't know why this is happening.The text was updated successfully, but these errors were encountered: