Skip to content

Commit

Permalink
style(initializer): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
malept committed Mar 16, 2017
1 parent 141269d commit dd6aec4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/init/init-npm.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const deps = ['electron-compile'];
export const devDeps = ['babel-preset-env', 'babel-preset-react', 'babel-plugin-transform-async-to-generator'];
export const exactDevDeps = ['electron-prebuilt-compile'];
export const standardDeps = ['standard'];
export const airbnDeps = ['eslint', 'eslint-config-airbnb', 'eslint-plugin-import',
export const airbnbDeps = ['eslint', 'eslint-config-airbnb', 'eslint-plugin-import',
'eslint-plugin-jsx-a11y@^3.0.0', 'eslint-plugin-react'];

export default async (dir, lintStyle) => {
Expand Down Expand Up @@ -58,7 +58,7 @@ export default async (dir, lintStyle) => {
break;
case 'airbnb':
d('installing airbnb linting dependencies');
await installDepList(dir, airbnDeps, true);
await installDepList(dir, airbnbDeps, true);
break;
default:
d('not installing linting deps');
Expand Down

0 comments on commit dd6aec4

Please sign in to comment.