Skip to content

Commit

Permalink
Basic package: creator, joiner, ui, php-array ProviderInterface
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Pushkov committed Mar 29, 2017
1 parent 5611ee0 commit 0866cc4
Show file tree
Hide file tree
Showing 40 changed files with 2,615 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["es2015", "stage-0", "react"]
}
27 changes: 27 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"extends": "eslint:recommended",
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true
},
"plugins": [
"react"
],
"rules": {
"no-debugger": 0,
"no-console": 0,
"new-cap": 0,
"strict": 0,
"no-underscore-dangle": 0,
"no-use-before-define": 0,
"eol-last": 0,
"quotes": [0, "single"],
"jsx-quotes": [1, "prefer-double"],
"react/jsx-no-undef": 0,
"react/jsx-uses-react": 0,
"react/jsx-uses-vars": 0,
"no-unused-vars": 0,
"no-case-declarations": 0
}
}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/node_modules/
*.log
.idea
*.iml
Loading

0 comments on commit 0866cc4

Please sign in to comment.