[REQ] Add eslint-disable block comment to typescript-axios generated files
Created by: jfoliveira
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.