Skip to content

Commit

Permalink
Adds support for Flow & Jest
Browse files Browse the repository at this point in the history
  • Loading branch information
carrieforde committed May 1, 2018
1 parent f9da8ad commit 3962ce2
Show file tree
Hide file tree
Showing 49 changed files with 22,801 additions and 3,791 deletions.
9 changes: 6 additions & 3 deletions .babelrc
@@ -1,5 +1,8 @@
{
"presets": [
"env"
]
"presets": ["flow"],
"env": {
"test": {
"plugins": ["babel-plugin-transform-es2015-modules-commonjs"]
}
}
}
10 changes: 5 additions & 5 deletions .eslintrc.json
Expand Up @@ -2,12 +2,12 @@
"env": {
"browser": true,
"es6": true,
"node": true
"node": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
"plugins": ["flowtype"],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
Expand Down
11 changes: 11 additions & 0 deletions .flowconfig
@@ -0,0 +1,11 @@
[ignore]

[include]

[libs]

[lints]

[options]

[strict]
18 changes: 18 additions & 0 deletions flow-typed/npm/aurora-utilities_vx.x.x.js
@@ -0,0 +1,18 @@
// flow-typed signature: 5a892ea6b3ee622cd3d19f11240bd72f
// flow-typed version: <<STUB>>/aurora-utilities_v^1.0.2/flow_v0.71.0

/**
* This is an autogenerated libdef stub for:
*
* 'aurora-utilities'
*
* Fill this stub out by replacing all the `any` types.
*
* Once filled out, we encourage you to share your work with the
* community by sending a pull request to:
* https://github.com/flowtype/flow-typed
*/

declare module 'aurora-utilities' {
declare module.exports: any;
}

0 comments on commit 3962ce2

Please sign in to comment.