eslint-config-dshimkin
Advanced tools
Comparing version 1.0.0 to 2.0.0
@@ -0,3 +1,12 @@ | ||
#### v2.0.0 – 04/06/2017 | ||
- Disabled the `no-empty-function` rule | ||
- Disabled the `no-warning-comments` rule | ||
- Disabled the `no-invalid-this` rule | ||
- Disabled the `consistent-this` rule | ||
- Added `caseSensitive: false` option for the `sort-keys` rule | ||
- Added `as-needed` option for the `func-names` rule | ||
#### v1.0.0 – 15/09/2016 | ||
- Initial release |
@@ -52,3 +52,3 @@ module.exports = { | ||
"no-else-return": ["error"], | ||
"no-empty-function": ["error"], | ||
"no-empty-function": ["off"], | ||
"no-empty-pattern": ["error"], | ||
@@ -66,3 +66,3 @@ "no-eq-null": ["error"], | ||
"no-implied-eval": ["error"], | ||
"no-invalid-this": ["error"], | ||
"no-invalid-this": ["off"], | ||
"no-iterator": ["error"], | ||
@@ -96,3 +96,3 @@ "no-labels": ["error"], | ||
"no-void": ["off"], | ||
"no-warning-comments": ["error"], | ||
"no-warning-comments": ["off"], | ||
"no-with": ["error"], | ||
@@ -129,6 +129,6 @@ "radix": ["error"], | ||
"computed-property-spacing": ["error"], | ||
"consistent-this": ["error"], | ||
"consistent-this": ["off"], | ||
"eol-last": ["error"], | ||
"func-call-spacing": ["error"], | ||
"func-names": ["error"], | ||
"func-names": ["error", "as-needed"], | ||
"func-style": ["error", "declaration"], | ||
@@ -188,3 +188,3 @@ "id-blacklist": ["error"], | ||
"semi-spacing": ["error"], | ||
"sort-keys": ["error"], | ||
"sort-keys": ["error", "asc", { "caseSensitive": false }], | ||
"sort-vars": ["error"], | ||
@@ -191,0 +191,0 @@ "space-before-blocks": ["error"], |
{ | ||
"name": "eslint-config-dshimkin", | ||
"version": "1.0.0", | ||
"version": "2.0.0", | ||
"description": "Proper eslint configuration", | ||
@@ -5,0 +5,0 @@ "main": "default.js", |
7846