Skip to content

Commit

Permalink
Rule added to index + bumped version to 0.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
benmosher committed Mar 19, 2015
1 parent ba52d40 commit 28eed02
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 4 additions & 2 deletions index.js
@@ -1,9 +1,11 @@
exports.rules = {
"exists": require("./lib/rules/exists"),
"named": require("./lib/rules/named")
"named": require("./lib/rules/named"),
"default": require("./lib/rules/default")
};

exports.rulesConfig = {
"exists": 2,
"named": 2
"named": 2,
"default": 2
};
3 changes: 1 addition & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-import",
"version": "0.2.4",
"version": "0.3.0",
"description": "Import with sanity.",
"main": "index.js",
"directories": {
Expand All @@ -27,7 +27,6 @@
"homepage": "https://github.com/benmosher/eslint-plugin-import",
"devDependencies": {
"chai": "^2.1.2",
"eslint": "^0.16.x",
"eslint-tester": "^0.6.0",
"mocha": "^2.2.1",
"object-assign": "^2.0.0"
Expand Down

0 comments on commit 28eed02

Please sign in to comment.