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
Hello,
This is a minor one, but the AddImport method always generates imports with single quotes around the path e.g.
AddImport
import { TimeSpan } from './TimeSpan.ts';
Many projects, including mine, require imports to use double quotes for consistency.
import { TimeSpan } from "./TimeSpan.ts";
While I could maybe exclude the rule for just these generated files, allowing the user to specify the use of single or double quotes would be nicer.
The relevant files seem to be:
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Hello,
This is a minor one, but the
AddImport
method always generates imports with single quotes around the path e.g.Many projects, including mine, require imports to use double quotes for consistency.
While I could maybe exclude the rule for just these generated files, allowing the user to specify the use of single or double quotes would be nicer.
The relevant files seem to be:
The text was updated successfully, but these errors were encountered: