diff --git a/templates/baseService.mustache b/templates/baseService.mustache index e4b9e00..1aff5cd 100644 --- a/templates/baseService.mustache +++ b/templates/baseService.mustache @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ import { HttpClient, HttpParameterCodec, HttpParams } from '@angular/common/http'; import { {{ configurationClass }} } from './{{configurationFile}}'; diff --git a/templates/configuration.mustache b/templates/configuration.mustache index 58bb9bd..66dc526 100644 --- a/templates/configuration.mustache +++ b/templates/configuration.mustache @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ import { Injectable } from '@angular/core'; /** diff --git a/templates/model.mustache b/templates/model.mustache index 2ed874a..8ca702e 100644 --- a/templates/model.mustache +++ b/templates/model.mustache @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ {{#modelDependencies}}import { {{modelClass}} } from './{{modelFile}}'; {{/modelDependencies}} {{#modelIsObject}}{{>object}}{{/modelIsObject diff --git a/templates/module.mustache b/templates/module.mustache index 6c5807b..a07bf8b 100644 --- a/templates/module.mustache +++ b/templates/module.mustache @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ import { NgModule, ModuleWithProviders } from '@angular/core'; import { HttpClientModule } from '@angular/common/http'; import { {{configurationClass}}, {{configurationInterface}} } from './{{configurationFile}}'; diff --git a/templates/service.mustache b/templates/service.mustache index 78fa92b..0cb281b 100644 --- a/templates/service.mustache +++ b/templates/service.mustache @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ import { Injectable } from '@angular/core'; import { HttpClient, HttpRequest, HttpResponse, HttpHeaders } from '@angular/common/http'; import { BaseService as __BaseService } from '../base-service'; diff --git a/templates/strictHttpResponse.mustache b/templates/strictHttpResponse.mustache index ebdeada..e7eb2e6 100644 --- a/templates/strictHttpResponse.mustache +++ b/templates/strictHttpResponse.mustache @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ import { HttpResponse } from '@angular/common/http'; /**