diff --git a/packages/schematics/schematics/blank/schematic-files/src/__name@dasherize__/index.ts b/packages/schematics/schematics/blank/schematic-files/src/__name@dasherize__/index.ts index 0edb05fbe4c5..7ac60f295aeb 100644 --- a/packages/schematics/schematics/blank/schematic-files/src/__name@dasherize__/index.ts +++ b/packages/schematics/schematics/blank/schematic-files/src/__name@dasherize__/index.ts @@ -3,7 +3,7 @@ import { Rule, SchematicContext, Tree } from '@angular-devkit/schematics'; // You don't have to export the function as default. You can also have more than one rule factory // per file. -export function <%= camelize(name) %>(options: any): Rule { +export function <%= camelize(name) %>(_options: any): Rule { return (tree: Tree, _context: SchematicContext) => { return tree; };