New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eslint-config-dshimkin

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-dshimkin - npm Package Compare versions

Comparing version 1.0.0 to 2.0.0

9

CHANGELOG.md

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

12

default.js

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

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