eslint-plugin-haraka
Advanced tools
Comparing version 1.0.4 to 1.0.5
@@ -0,1 +1,6 @@ | ||
# 1.0.5 - 2017-02-01 | ||
* fixed missing comma at end of no-empty rule | ||
* added "no-undef": 1 (warnings only) | ||
# 1.0.3 - 2017-01-27 | ||
@@ -8,2 +13,2 @@ | ||
* added env:es6=true | ||
* added space-before-function-paren rule | ||
* added space-before-function-paren rule |
@@ -14,5 +14,6 @@ var fs = require('fs'); | ||
"no-delete-var": 2, | ||
"no-empty": 1, | ||
"no-empty": ["error", { "allowEmptyCatch": true }], | ||
"no-label-var": 2, | ||
"no-shadow": 2, | ||
"no-undef": 1, | ||
"no-unused-vars": [ 1, { "args": "none" }], | ||
@@ -38,2 +39,2 @@ "space-before-function-paren": [2, { "anonymous": "always", "named": "always" }] | ||
} | ||
} | ||
} |
{ | ||
"name": "eslint-plugin-haraka", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "eslint rules for Haraka projects", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -15,3 +15,4 @@ # haraka-eslint | ||
"haraka" | ||
] | ||
], | ||
"extends": ["eslint:recommended", "plugin:haraka/recommended"], | ||
} | ||
@@ -37,2 +38,2 @@ ` | ||
If you disagree, you can add custom rules to your .eslintrc.json file. | ||
If you disagree, you can add custom rules to your .eslintrc.json file. |
4713
34
38