eslint-config-kinvey-platform
Advanced tools
Comparing version 0.1.3 to 0.1.5
# Changelog | ||
## 0.1.5 | ||
* Disable no-use-before-define rule for functions | ||
## 0.1.4 | ||
* Disable rule that expects class methods to use 'this' | ||
* Remove deprecated 'experimentalObjectRestSpread' flag | ||
## 0.1.3 | ||
@@ -4,0 +11,0 @@ * Add exceptions for global variables |
@@ -7,7 +7,4 @@ module.exports = { | ||
ecmaVersion: 2017, | ||
sourceType: 'module', | ||
ecmaFeatures: { | ||
experimentalObjectRestSpread: true, | ||
}, | ||
sourceType: 'module' | ||
} | ||
}; |
@@ -20,8 +20,3 @@ module.exports = { | ||
], | ||
"class-methods-use-this": [ | ||
"error", | ||
{ | ||
"exceptMethods": [] | ||
} | ||
], | ||
"class-methods-use-this": "off", | ||
"consistent-return": "warn", | ||
@@ -675,3 +670,3 @@ "curly": [ | ||
], | ||
"no-use-before-define": "error", | ||
"no-use-before-define": ["error", { "functions": false }], | ||
"arrow-body-style": [ | ||
@@ -864,4 +859,3 @@ "warn", | ||
"generators": false, | ||
"objectLiteralDuplicateProperties": false, | ||
"experimentalObjectRestSpread": true | ||
"objectLiteralDuplicateProperties": false | ||
}, | ||
@@ -868,0 +862,0 @@ "ecmaVersion": 2017, |
{ | ||
"name": "eslint-config-kinvey-platform", | ||
"license": "Apache-2.0", | ||
"version": "0.1.3", | ||
"version": "0.1.5", | ||
"description": "ESLint Profile for the Kinvey Platform", | ||
@@ -6,0 +6,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
71293
892