Skip to content

Commit

Permalink
1er commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Aquilon11 committed Oct 28, 2017
1 parent 5976146 commit aebdaa4
Show file tree
Hide file tree
Showing 14 changed files with 7,782 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"presets": [
"env",
"flow"
]
}
19 changes: 19 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"env": {
"browser": true,
"jest": true
},
"extends": [
"airbnb",
"plugin:flowtype/recommended"
],
"plugins": [
"flowtype",
"compat"
],
"rules": {
"semi": [2, "never"],
"no-unexpected-multiline": 2,
"compat/compat": 2
}
}
2 changes: 2 additions & 0 deletions .flowconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[options]
suppress_comment= \\(.\\|\n\\)*\\flow-disable-next-line
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.DS_Store
/*.log
node_modules/
/coverage/
/lib/
/dist/
Loading

0 comments on commit aebdaa4

Please sign in to comment.