Socket
Socket
Sign inDemoInstall

eslint-config-airbnb

Package Overview
Dependencies
225
Maintainers
3
Versions
61
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 11.0.0 to 11.1.0

4

CHANGELOG.md

@@ -0,1 +1,5 @@

11.1.0 / 2016-09-11
==================
- [deps] update `eslint-config-airbnb-base`, `eslint`
11.0.0 / 2016-09-08

@@ -2,0 +6,0 @@ ==================

8

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

@@ -48,3 +48,3 @@ "main": "index.js",

"dependencies": {
"eslint-config-airbnb-base": "^7.0.0"
"eslint-config-airbnb-base": "^7.1.0"
},

@@ -54,3 +54,3 @@ "devDependencies": {

"babel-tape-runner": "^2.0.1",
"eslint": "^3.4.0",
"eslint": "^3.5.0",
"eslint-find-rules": "^1.13.1",

@@ -66,3 +66,3 @@ "eslint-plugin-import": "^1.14.0",

"peerDependencies": {
"eslint": "^3.4.0",
"eslint": "^3.5.0",
"eslint-plugin-jsx-a11y": "^2.2.1",

@@ -69,0 +69,0 @@ "eslint-plugin-import": "^1.14.0",

@@ -9,3 +9,3 @@ import fs from 'fs';

fs.readdirSync(path.join(__dirname, '../rules')).forEach(name => {
fs.readdirSync(path.join(__dirname, '../rules')).forEach((name) => {
if (name === 'react.js' || name === 'react-a11y.js') {

@@ -18,6 +18,6 @@ return;

Object.keys(files).forEach(name => {
Object.keys(files).forEach((name) => {
const config = files[name];
test(`${name}: does not reference react`, t => {
test(`${name}: does not reference react`, (t) => {
t.plan(2);

@@ -24,0 +24,0 @@

@@ -60,3 +60,3 @@ import test from 'tape';

t.test('order: when random method is first', t => {
t.test('order: when random method is first', (t) => {
t.plan(2);

@@ -78,3 +78,3 @@ const result = lint(wrapComponent(`

t.test('order: when random method after lifecycle methods', t => {
t.test('order: when random method after lifecycle methods', (t) => {
t.plan(2);

@@ -81,0 +81,0 @@ const result = lint(wrapComponent(`

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