Skip to content

Commit

Permalink
Update dependencies, configurations, and tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
migueloller committed Jan 30, 2017
1 parent aee4754 commit 3695f0c
Show file tree
Hide file tree
Showing 8 changed files with 3,975 additions and 24 deletions.
11 changes: 9 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
{
"presets": [
"latest",
"stage-0"
["env", {
"targets": {
"node": 6
}
}]
],
"plugins": [
"transform-object-rest-spread",
"transform-flow-strip-types"
]
}
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
!.eslintrc.js
lib
coverage
flow-typed
10 changes: 5 additions & 5 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module.exports = {
extends: 'airbnb-base',
extends: [
'airbnb-base',
'plugin:flowtype/recommended',
],
parser: 'babel-eslint',
plugins: [
'babel',
'flowtype',
],
rules: {
'babel/func-params-comma-dangle': ['error', 'always-multiline'],
},
};
7 changes: 7 additions & 0 deletions .flowconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[ignore]

[include]

[libs]

[options]
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: node_js
node_js:
- "4"
- "5"
- "7"
- "6"
script:
- npm test -- --coverage && cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js
Loading

0 comments on commit 3695f0c

Please sign in to comment.