Skip to content

Commit 8083979

Browse files
Danny Bluefilipesilva
Danny Blue
authored andcommitted
chore: generated files fail linter (#479)
A couple of files generated for a new project were failing the linter Fixes #477
1 parent 9481790 commit 8083979

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

addon/ng2/blueprints/ng2/files/src/client/system-config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ const barrels: string[] = [
33
/** @cli-barrel */
44
];
55

6-
function createPackageConfig(barrels: string[]): any {
7-
return barrels.reduce((barrelConfig: any, barrelName: string) => {
6+
function createPackageConfig(barrelList: string[]): any {
7+
return barrelList.reduce((barrelConfig: any, barrelName: string) => {
88
barrelConfig[barrelName] = {
99
format: 'register',
1010
defaultExtension: 'js',
@@ -20,4 +20,4 @@ export const config: any = {
2020
packages: Object.assign({
2121
// Add your custom SystemJS packages here.
2222
}, createPackageConfig(barrels))
23-
};
23+
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
/// <reference path="../../typings/browser.d.ts" />
22

3-
declare var __moduleName: string;
3+
declare var __moduleName: string;

0 commit comments

Comments
 (0)