Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

Commit

Permalink
[merge] PR #8 from JeromeFitz/greenkeeper/initial
Browse files Browse the repository at this point in the history
Update dependencies to enable Greenkeeper 🌴
  • Loading branch information
JeromeFitz authored Jul 5, 2017
2 parents 11e2c5c + 69d5e71 commit 5abebd3
Show file tree
Hide file tree
Showing 4 changed files with 357 additions and 252 deletions.
26 changes: 20 additions & 6 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# 0 = off, 1 = warn, 2 = error
{
"extends": ["react-app"],
"env": {
Expand All @@ -15,10 +16,11 @@
},
"rules": {
"default-case": 0,
"react/no-multi-comp": 0,
"react/prefer-stateless-function": 0,
"react/jsx-filename-extension": 0,
"react/forbid-prop-types": 0,
"react/no-multi-comp": "off",
"react/prefer-stateless-function": "off",
"react/jsx-filename-extension": "off",
"react/forbid-prop-types": "off",
"react/react-in-jsx-scope": "off",
"import/default": 0,
"import/no-duplicates": 0,
"import/named": 0,
Expand All @@ -29,17 +31,29 @@
"import/no-extraneous-dependencies": 0,
"import/extensions": 0,
"comma-dangle": 0,
"indent": [2, 2, {"SwitchCase": 1}],
"indent": ["error", 2, {
"SwitchCase": 1,
"VariableDeclarator": {"var": 2, "let": 2, "const": 3},
"MemberExpression": 1,
"ObjectExpression": 1,
}],
"no-console": 0,
"no-alert": 0,
"strict": 0,
"arrow-body-style": [1, "as-needed"],
"no-confusing-arrow": [2, {"allowParens": true}],
"jsx-quotes": [0, "prefer-single"],
"jsx-quotes": [1, "prefer-single"],
"no-prototype-builtins": 0,
"class-methods-use-this": 0,
"no-useless-escape": 1,
"jsx-a11y/img-has-alt": 0,
"jsx-a11y/alt-text": 0,
"jsx-a11y/href-no-hash": 0,
"jsx-a11y/anchor-is-valid": [ 0, {
"components": [ "Link" ],
"specialLink": [ "hrefLeft", "hrefRight" ],
"aspects": [ "noHref", "invalidHref", "preferButton" ]
}]
},
"plugins": [
"react", "import"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[![Greenkeeper badge](https://badges.greenkeeper.io/JeromeFitz/react-instafeed.svg)](https://greenkeeper.io/)
[![Build Status](https://img.shields.io/travis/JeromeFitz/react-instafeed/master.svg)](https://travis-ci.org/JeromeFitz/react-instafeed)
[![NPM version](https://img.shields.io/npm/v/react-instafeed.svg)](https://www.npmjs.org/package/react-instafeed)

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-react-app": "^0.6.2",
"eslint": "^4.1.1",
"eslint-config-react-app": "^1.0.5",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-import": "2.6.1",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.0.1"
},
"eslintConfig": {
Expand Down
Loading

0 comments on commit 5abebd3

Please sign in to comment.