Skip to content
This repository was archived by the owner on Feb 7, 2022. It is now read-only.

Commit

Permalink
upgrade deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
terebentina committed May 7, 2017
1 parent 4387cbe commit e49a1d6
Show file tree
Hide file tree
Showing 8 changed files with 4,910 additions and 310 deletions.
56 changes: 43 additions & 13 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,17 +1,47 @@
{
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"indent": [2, "tab", {"SwitchCase": 1}],
"react/jsx-indent": [2, "tab"],
"spaced-comment": 0,
"func-names": 0,
"no-console": 0,
"eqeqeq": 0,
"id-length": 0,
"no-nested-ternary": 1,
"no-use-before-define": 0,
"space-before-function-paren": 0,
"max-len": 0
}
"settings": {
"import/resolver": {
"webpack": {
"config": "./webpack.config.js"
}
}
},
"ecmaFeatures": {
"generators": true
},
"rules": {
"no-underscore-dangle": 0,
"spaced-comment": 0,
"func-names": 0,
"no-console": 0,
"eqeqeq": 0,
"id-length": 0,
"no-nested-ternary": 1,
"no-use-before-define": 0,
"space-before-function-paren": 0,
"max-len": 0,
"consistent-return": 0,
"newline-per-chained-call": 0,
"global-require": 0,
"react/jsx-filename-extension": 0,
"import/no-extraneous-dependencies": 0,
"no-plusplus": 0,
"arrow-parens": ["error", "always"],
"react/forbid-prop-types": ["error", { "forbid": ["any", "array"] }],
"react/no-unused-prop-types": ["error", {"skipShapeProps": true}],
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "never",
"exports": "never",
"functions": "never"
}]
},
"globals": {
"localStorage": true,
"document": true,
"window": true
}
}
4 changes: 2 additions & 2 deletions demo/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion demo/styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 11 additions & 5 deletions demo/vendor.js

Large diffs are not rendered by default.

Loading

0 comments on commit e49a1d6

Please sign in to comment.