Skip to content

Commit

Permalink
Merge pull request #22 from ryank109/update
Browse files Browse the repository at this point in the history
chores
  • Loading branch information
ryank109 committed Sep 20, 2017
2 parents 92e8244 + 74ab25d commit 02e1b5c
Show file tree
Hide file tree
Showing 5 changed files with 1,711 additions and 606 deletions.
20 changes: 10 additions & 10 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
{
'parser': 'babel-eslint',
'env': {
'browser': true,
'jest': true
},
'extends': 'airbnb',
'globals': {
'React': true
},
'rules': {
'arrow-parens': ['error', 'as-needed'],
'class-methods-use-this': 0,
'comma-dangle': ['error', 'never'],
'import/no-named-as-default': 0,
'func-names': 0,
'import/extensions': 0,
'import/no-extraneous-dependencies': 0,
'import/no-unresolved': 0,
'import/prefer-default-export': 1,
'indent': ['error', 4],
'no-func-assign': 0,
'no-plusplus': ['error', { 'allowForLoopAfterthoughts': true }],
'no-shadow': ['error', { 'hoist': 'functions' }],
'prefer-arrow-callback': 0,
'react/forbid-prop-types': 0,
'react/jsx-indent': [2, 4],
'react/jsx-indent-props': [2, 4],
'react/prefer-stateless-function': 1,
'react/react-in-jsx-scope': 0,
'react/require-default-props': 0,
'react/sort-comp': 1,
'space-before-function-paren': 0
},
"settings": {
"import/resolver": {
"webpack": {
"config": "configs/webpack.config.js"
}
}
}
}
Loading

0 comments on commit 02e1b5c

Please sign in to comment.