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:
should contain
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
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-axiosgenerated .ts files.Describe the solution you'd like
The line comment that instructs the linter to skip linting the generated file, instead of:
// tslint-disableshould contain
/* eslint-disable */Describe alternatives you've considered
Manually doing a search and replace in all generated files replacing
// tslint-disablewith/* eslint-disable */works, as expected.Additional context