From da8ce042b61ca414e1317db72cd544b47b650743 Mon Sep 17 00:00:00 2001 From: Daniel Imhoff Date: Thu, 16 Mar 2017 10:33:58 -0500 Subject: [PATCH] chore(templates): directive template --- scripts/templates/directive/spec.ts.tmpl | 1 - scripts/templates/directive/ts.tmpl | 12 ++++++------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/scripts/templates/directive/spec.ts.tmpl b/scripts/templates/directive/spec.ts.tmpl index 2a21a514a9..c6bd0fd920 100644 --- a/scripts/templates/directive/spec.ts.tmpl +++ b/scripts/templates/directive/spec.ts.tmpl @@ -1,4 +1,3 @@ - describe('$CLASSNAME', () => { it('should do something', () => { expect(true).toEqual(true); diff --git a/scripts/templates/directive/ts.tmpl b/scripts/templates/directive/ts.tmpl index 00b23efced..b71c0023cc 100644 --- a/scripts/templates/directive/ts.tmpl +++ b/scripts/templates/directive/ts.tmpl @@ -1,11 +1,11 @@ import { Directive } from '@angular/core'; -/* - Generated class for the $CLASSNAME directive. - - See https://angular.io/docs/ts/latest/api/core/index/DirectiveMetadata-class.html - for more info on Angular 2 Directives. -*/ +/** + * Generated class for the $CLASSNAME directive. + * + * See https://angular.io/docs/ts/latest/api/core/index/DirectiveMetadata-class.html + * for more info on Angular Directives. + */ @Directive({ selector: '[$FILENAME]' // Attribute selector })