Socket
Socket
Sign inDemoInstall

eslint-config-airbnb

Package Overview
Dependencies
88
Maintainers
2
Versions
61
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.1 to 1.0.0

1

base.js

@@ -6,4 +6,3 @@ module.exports = {

],
'parser': 'babel-eslint',
'rules': {}
};

25

package.json
{
"name": "eslint-config-airbnb",
"version": "0.1.1",
"version": "1.0.0",
"description": "Airbnb's ESLint config, following our styleguide",

@@ -23,2 +23,13 @@ "main": "index.js",

"author": "Jake Teton-Landis (https://twitter.com/@jitl)",
"contributors": [
{
"name": "Jake Teton-Landis",
"url": "https://twitter.com/jitl"
},
{
"name": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes"
}
],
"license": "MIT",

@@ -30,9 +41,11 @@ "bugs": {

"devDependencies": {
"babel-eslint": "4.1.3",
"babel-tape-runner": "1.2.0",
"eslint": "1.5.1",
"eslint-plugin-react": "3.4.2",
"react": "0.13.3",
"tape": "4.2.0"
"eslint": "^1.8.0",
"eslint-plugin-react": "^3.7.1",
"react": "^0.13.3",
"tape": "^4.2.2"
},
"peerDependencies": {
"eslint": ">=1.0.0"
}
}

@@ -47,2 +47,12 @@ # eslint-config-airbnb

### 1.0.0
- require `eslint` `v1.0.0` or higher
- removes `babel-eslint` dependency
### 0.1.1
- remove id-length rule (#569)
- enable `no-mixed-spaces-and-tabs` (#539)
- enable `no-const-assign` (#560)
- enable `space-before-keywords` (#554)
### 0.1.0

@@ -49,0 +59,0 @@

module.exports = {
'parser': 'babel-eslint',
'plugins': [

@@ -4,0 +3,0 @@ 'react'

@@ -32,4 +32,3 @@ import test from 'tape';

t.test('make sure our eslintrc has React linting dependencies', t => {
t.plan(2);
t.equal(baseConfig.parser, 'babel-eslint', 'uses babel-eslint');
t.plan(1);
t.equal(reactRules.plugins[0], 'react', 'uses eslint-plugin-react');

@@ -36,0 +35,0 @@ });

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc