Skip to content

Commit

Permalink
style(core): lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
meriadec committed Mar 5, 2015
1 parent 7540496 commit 08cfdff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ var BangularGenerator = yeoman.generators.Base.extend({
self.filters.sockets = props.sockets;
self.filters.auth = props.auth;
if (props.auth) {
self.filters['ngCookies'] = true;
self.filters.ngCookies = true;
}
done();
});
Expand Down
12 changes: 6 additions & 6 deletions route/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ var BangularGenerator = yeoman.generators.NamedBase.extend({
file: 'client/styles/app.scss',
append: '@import "../views/' + this.dashName + '/' + this.dashName + '";'
}, function importCallback (err) {
/* istanbul ignore if */
if (err) {
bangLog('There was an error importing the style.', 'red');
} else {
bangLog('Your style was successfully injected.', 'green');
}
/* istanbul ignore if */
if (err) {
bangLog('There was an error importing the style.', 'red');
} else {
bangLog('Your style was successfully injected.', 'green');
}
});

}
Expand Down

0 comments on commit 08cfdff

Please sign in to comment.