Skip to content

Commit

Permalink
Fixes linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Maël Nison committed Apr 6, 2017
1 parent fc45ae8 commit 76b50c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/rc.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/* @flow */

import rc from 'rc';

import parse from './lockfile/parse.js';

const rc = require('rc');

// Keys that will get resolved relative to the path of the rc file they belong to
const PATH_KEYS = [
'cache-folder',
Expand Down Expand Up @@ -50,7 +50,7 @@ const buildRcArgs = () => Object.keys(getRcConf()).reduce((argLists, key) => {
return argLists;
}

const namespace = miniparse[1] || `*`;
const namespace = miniparse[1] || '*';
const arg = miniparse[2];
const value = getRcConf()[key];

Expand Down

0 comments on commit 76b50c2

Please sign in to comment.