Socket
Socket
Sign inDemoInstall

eslint-config-airbnb-base

Package Overview
Dependencies
Maintainers
2
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-airbnb-base - npm Package Compare versions

Comparing version 11.0.1 to 11.1.0

6

CHANGELOG.md

@@ -0,1 +1,7 @@

11.1.0 / 2017-01-08
==================
- [minor] enable `no-multi-assign`
- [deps] update `eslint`, `babel-preset-airbnb`
- Update a deprecated option (`eqeqeq`) (#1244)
11.0.1 / 2017-01-08

@@ -2,0 +8,0 @@ ==================

8

package.json
{
"name": "eslint-config-airbnb-base",
"version": "11.0.1",
"version": "11.1.0",
"description": "Airbnb's base JS ESLint config, following our styleguide",

@@ -49,6 +49,6 @@ "main": "index.js",

"devDependencies": {
"babel-preset-airbnb": "^2.1.1",
"babel-preset-airbnb": "^2.2.3",
"babel-tape-runner": "^2.0.1",
"editorconfig-tools": "^0.1.1",
"eslint": "^3.13.0",
"eslint": "^3.15.0",
"eslint-find-rules": "^1.14.3",

@@ -61,3 +61,3 @@ "eslint-plugin-import": "^2.2.0",

"peerDependencies": {
"eslint": "^3.13.0",
"eslint": "^3.15.0",
"eslint-plugin-import": "^2.2.0"

@@ -64,0 +64,0 @@ },

@@ -40,3 +40,3 @@ module.exports = {

// http://eslint.org/docs/rules/eqeqeq
eqeqeq: ['error', 'allow-null'],
eqeqeq: ['error', 'always', { null: 'ignore' }],

@@ -257,2 +257,7 @@ // make sure for-in loops have an if statement

// require using Error objects as Promise rejection reasons
// http://eslint.org/docs/rules/prefer-promise-reject-errors
// TODO: enable, semver-major
'prefer-promise-reject-errors': ['off', { allowEmptyReject: true }],
// require use of the second argument for parseInt()

@@ -259,0 +264,0 @@ radix: 'error',

@@ -234,2 +234,6 @@ module.exports = {

// disallow use of chained assignment expressions
// http://eslint.org/docs/rules/no-multi-assign
'no-multi-assign': ['error'],
// disallow multiple empty lines and only one newline at the end

@@ -383,2 +387,7 @@ 'no-multiple-empty-lines': ['error', { max: 2, maxEOF: 1 }],

// Require or disallow spacing between template tags and their literals
// http://eslint.org/docs/rules/template-tag-spacing
// TODO: enable, semver-major
'template-tag-spacing': ['off', 'never'],
// require or disallow the Unicode Byte Order Mark

@@ -385,0 +394,0 @@ // http://eslint.org/docs/rules/unicode-bom

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