Skip to content

Commit

Permalink
fix unfound rules eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
iamstarkov committed Apr 25, 2017
1 parent f8a1b58 commit ee5f9a2
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions src/index.js
Expand Up @@ -8,19 +8,14 @@ export default {
tooManyArguments,
exists
},
rulesConfig: {
notEmpty: 2,
tooManyArguments: 2,
exists: [ 2, { extensions: [ '', '.js', '.json', '.node' ] }]
},
configs: {
recommended: {
plugins: ['require-path-exists'],
rules: {
notEmpty: 2,
tooManyArguments: 2,
exists: [ 2, { extensions: [ '', '.js', '.json', '.node' ] }]
},
},
},
'require-path-exists/notEmpty': 2,
'require-path-exists/tooManyArguments': 2,
'require-path-exists/exists': [ 2, { extensions: ['', '.js', '.json', '.node'] }]
}
}
}
};

0 comments on commit ee5f9a2

Please sign in to comment.