Skip to content

Commit

Permalink
Improved documentation and tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
masylum committed Mar 19, 2017
1 parent d9967ec commit c862ad6
Show file tree
Hide file tree
Showing 32 changed files with 5,844 additions and 174 deletions.
36 changes: 36 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
module.exports = {
parser: 'babel-eslint',
plugins: [ 'flowtype' ],

env: {
browser: true,
commonjs: true,
es6: true,
jest: true,
node: true
},

parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
ecmaFeatures: {
experimentalObjectRestSpread: true
}
},

extends: [
'plugin:flowtype/recommended',
'standard'
],

rules: {
'object-curly-spacing': ['warn', 'always'],
'no-duplicate-imports': 'off',
'flowtype/no-weak-types': [0, {
'any': false,
'Object': false,
'Function': false
}]
}
};

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
lib/
coverage/
node_modules/

Loading

0 comments on commit c862ad6

Please sign in to comment.