Skip to content

Commit

Permalink
new version build
Browse files Browse the repository at this point in the history
  • Loading branch information
voronianski committed Oct 2, 2017
1 parent 30b1517 commit 5fd8f67
Show file tree
Hide file tree
Showing 6 changed files with 1,398 additions and 1,315 deletions.
29 changes: 15 additions & 14 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
{
extends: "airbnb/base",
parser: "babel-eslint",

extends: "eslint:recommended",

env: {
"browser": true,
"es6": true,
"node": true,
"es6": true
"browser": true
},

parser: "babel-eslint",

plugins: ["react"],
plugins: [
"react",
"import"
],

ecmaFeatures: {
"jsx": true
settings: {
"import/resolver": "node"
},

rules: {
Expand All @@ -37,7 +40,7 @@
"react/react-in-jsx-scope": 1,
"react/self-closing-comp": 1,
"react/jsx-wrap-multilines": 1,
"import/no-extraneous-dependencies": 0,
"import/imports-first": 0,
"new-cap": 0,
"no-extra-boolean-cast": 0,
"yoda": 0,
Expand All @@ -53,16 +56,14 @@
"no-param-reassign": 0,
"consistent-return": 0,
"no-console": 0,
"no-void": 0,
"func-names": 0,
"no-nested-ternary": 0,
"quote-props": 0,
"quote-props": [2, "consistent-as-needed", { "keywords": false, "unnecessary": true, "numbers": false }],
"space-infix-ops": 0,
"prefer-const": 0,
"prefer-template": 0,
"spaced-comment": 0,
"prefer-rest-params": 0,
"no-shadow": 0,
"no-unneeded-ternary": 0,
"no-void": 0
"prefer-rest-params": 0
}
}
7 changes: 1 addition & 6 deletions demo/bundle.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 5fd8f67

Please sign in to comment.