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
As TSLint has been deprecated, and typescript-fetch already supports ESLint it would be nice to have the same ESLint support in typescript-axios generated .ts files.
typescript-axios
The line comment that instructs the linter to skip linting the generated file, instead of:
// tslint-disable
should contain
/* eslint-disable */
Manually doing a search and replace in all generated files replacing // tslint-disable with /* eslint-disable */ works, as expected.
The text was updated successfully, but these errors were encountered:
@jfoliveira good idea, would you like to file a PR?
Sorry, something went wrong.
@macjohnny I'd sent you #6613 for this issue, could you please check it.
Successfully merging a pull request may close this issue.
Is your feature request related to a problem? Please describe.
As TSLint has been deprecated, and typescript-fetch already supports ESLint it would be nice to have the same ESLint support in
typescript-axios
generated .ts files.Describe the solution you'd like
The line comment that instructs the linter to skip linting the generated file, instead of:
// tslint-disable
should contain
/* eslint-disable */
Describe alternatives you've considered
Manually doing a search and replace in all generated files replacing
// tslint-disable
with/* eslint-disable */
works, as expected.Additional context
The text was updated successfully, but these errors were encountered: