Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-config-kinvey-platform

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-kinvey-platform - npm Package Compare versions

Comparing version 0.1.3 to 0.1.5

7

CHANGELOG.md
# 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

5

index.js

@@ -7,7 +7,4 @@ module.exports = {

ecmaVersion: 2017,
sourceType: 'module',
ecmaFeatures: {
experimentalObjectRestSpread: true,
},
sourceType: 'module'
}
};

12

kinvey-rules.js

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc