Skip to content

Commit

Permalink
feat(config): Proxy all eslint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Radchenko committed Feb 14, 2017
1 parent 3f57e39 commit a0bdf74
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@

var processor = require('./processors/js');

module.exports.processors = {
'.js': processor
module.exports = {
processors: {
'.js': processor
},

configs: {
all: {
extends: 'eslint:all'
}
}
};

0 comments on commit a0bdf74

Please sign in to comment.