Skip to content

chore: generated files fail linter #479

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 20, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions addon/ng2/blueprints/ng2/files/src/client/system-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ const barrels: string[] = [
/** @cli-barrel */
];

function createPackageConfig(barrels: string[]): any {
return barrels.reduce((barrelConfig: any, barrelName: string) => {
function createPackageConfig(barrelList: string[]): any {
return barrelList.reduce((barrelConfig: any, barrelName: string) => {
barrelConfig[barrelName] = {
format: 'register',
defaultExtension: 'js',
Expand All @@ -20,4 +20,4 @@ export const config: any = {
packages: Object.assign({
// Add your custom SystemJS packages here.
}, createPackageConfig(barrels))
};
};
2 changes: 1 addition & 1 deletion addon/ng2/blueprints/ng2/files/src/client/typings.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/// <reference path="../../typings/browser.d.ts" />

declare var __moduleName: string;
declare var __moduleName: string;