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

eslint-config-standard

Package Overview
Dependencies
Maintainers
1
Versions
83
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-standard - npm Package Compare versions

Comparing version 7.0.0 to 8.0.0-beta.0

35

eslintrc.json

@@ -17,4 +17,6 @@ {

"plugins": [
"standard",
"promise"
"import",
"node",
"promise",
"standard"
],

@@ -34,3 +36,9 @@

"camelcase": ["error", { "properties": "never" }],
"comma-dangle": ["error", "never"],
"comma-dangle": ["error", {
"arrays": "never",
"objects": "never",
"imports": "never",
"exports": "never",
"functions": "never"
}],
"comma-spacing": ["error", { "before": false, "after": true }],

@@ -64,3 +72,2 @@ "comma-style": ["error", "last"],

"no-duplicate-case": "error",
"no-duplicate-imports": "error",
"no-empty-character-class": "error",

@@ -73,3 +80,2 @@ "no-empty-pattern": "error",

"no-extra-boolean-cast": "error",
"no-extra-label": "error",
"no-extra-parens": ["error", "functions"],

@@ -116,2 +122,3 @@ "no-fallthrough": "error",

"no-return-assign": ["error", "except-parens"],
"no-return-await": "error",
"no-self-assign": "error",

@@ -136,3 +143,3 @@ "no-self-compare": "error",

"no-unused-expressions": ["error", { "allowShortCircuit": true, "allowTernary": true }],
"no-unused-vars": ["error", { "vars": "all", "args": "none" }],
"no-unused-vars": ["error", { "vars": "all", "args": "none", "ignoreRestSiblings": true }],
"no-use-before-define": ["error", { "functions": false, "classes": false, "variables": false }],

@@ -175,8 +182,18 @@ "no-useless-call": "error",

"standard/object-curly-even-spacing": ["error", "either"],
"import/export": "error",
"import/first": "error",
"import/no-absolute-path": "error",
"import/no-duplicates": "error",
"import/no-webpack-loader-syntax": "error",
"node/no-deprecated-api": "error",
"node/process-exit-as-throw": "error",
"promise/param-names": "error",
"standard/array-bracket-even-spacing": ["error", "either"],
"standard/computed-property-even-spacing": ["error", "even"],
"promise/param-names": "error"
"standard/no-callback-literal": "error",
"standard/object-curly-even-spacing": ["error", "either"]
}
}
{
"name": "eslint-config-standard",
"description": "JavaScript Standard Style - ESLint Shareable Config",
"version": "7.0.0",
"version": "8.0.0-beta.0",
"author": {

@@ -15,4 +15,6 @@ "name": "Feross Aboukhadijeh",

"eslint": "^3.8.1",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.0.1",
"tape": "^4.6.0"

@@ -51,4 +53,6 @@ },

"eslint": ">=3.8.1",
"eslint-plugin-promise": ">=3.3.0",
"eslint-plugin-standard": ">=2.0.0"
"eslint-plugin-import": ">=2.2.0",
"eslint-plugin-node": ">=4.1.0",
"eslint-plugin-promise": ">=3.5.0",
"eslint-plugin-standard": ">=2.0.1"
},

@@ -55,0 +59,0 @@ "repository": {

@@ -35,3 +35,3 @@ # Standard - ESLint Shareable Config

```bash
npm install --save-dev eslint-config-standard eslint-plugin-standard eslint-plugin-promise
npm install --save-dev eslint-config-standard eslint-plugin-standard eslint-plugin-promise eslint-plugin-import
```

@@ -38,0 +38,0 @@

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