eslint-plugin-haraka
Advanced tools
Comparing version 1.0.9 to 1.0.10
@@ -0,1 +1,5 @@ | ||
# 1.0.10 - 2019-06-22 | ||
* remove node 6 testing | ||
# 1.0.9 - 2017-09-16 | ||
@@ -2,0 +6,0 @@ |
10
index.js
@@ -0,5 +1,4 @@ | ||
'use strict'; | ||
"use strict"; | ||
var recommendedRules = { | ||
const recommendedRules = { | ||
"comma-dangle": [2, "only-multiline"], | ||
@@ -26,3 +25,4 @@ "dot-notation": 2, | ||
"prefer-const": ["error", {"ignoreReadBeforeAssign": true}], | ||
"no-var": "error" | ||
"no-var": "error", | ||
"object-shorthand": ["warning", "always"] | ||
}; | ||
@@ -35,3 +35,3 @@ | ||
// no curly to be on a single line. | ||
var rules = { | ||
const rules = { | ||
"no-newline-no-curly-if": require('./rules/no-newline-no-curly-if'), | ||
@@ -38,0 +38,0 @@ }; |
{ | ||
"name": "eslint-plugin-haraka", | ||
"version": "1.0.9", | ||
"version": "1.0.10", | ||
"description": "eslint rules for Haraka projects", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -1,2 +0,2 @@ | ||
"use strict"; | ||
'use strict'; | ||
@@ -3,0 +3,0 @@ exports.meta = { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
82
7457
9