Skip to content

Commit

Permalink
Add module setup
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffreydhuyvetters committed Feb 23, 2018
1 parent 4445a5d commit b5b3079
Show file tree
Hide file tree
Showing 9 changed files with 6,861 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .babelrc
@@ -0,0 +1,14 @@
{
"presets": [
"flow",
[
"env",
{
"targets": {
"browsers": ["last 2 versions"]
}
}
]
],
"plugins": ["add-module-exports", "transform-export-extensions"]
}
1 change: 1 addition & 0 deletions .eslintignore
@@ -0,0 +1 @@
dist
12 changes: 12 additions & 0 deletions .eslintrc
@@ -0,0 +1,12 @@
{
"parser": "babel-eslint",
"extends": ["airbnb", "prettier"],
"plugins": ["prettier"],
"rules": {
"prettier/prettier": ["error"]
},
"env": {
"node": true,
"jest": true
}
}
11 changes: 11 additions & 0 deletions .flowconfig
@@ -0,0 +1,11 @@
[ignore]

[include]

[libs]

[lints]

[options]

[strict]
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -26,6 +26,9 @@ coverage
# Bower dependency directory (https://bower.io/)
bower_components

# Build folders
dist

# node-waf configuration
.lock-wscript

Expand Down
1 change: 1 addition & 0 deletions .npmrc
@@ -0,0 +1 @@
package
3 changes: 3 additions & 0 deletions .prettierrc
@@ -0,0 +1,3 @@
{
"singleQuote": true
}

0 comments on commit b5b3079

Please sign in to comment.