Skip to content

Commit

Permalink
feat(signup) : signup users
Browse files Browse the repository at this point in the history
 - allows user to create a new account
[#161966567]
  • Loading branch information
actlikewill committed Jan 22, 2019
1 parent 68b59bb commit 932c343
Show file tree
Hide file tree
Showing 24 changed files with 775 additions and 79 deletions.
2 changes: 2 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
exclude_patterns:
- "**/*.test.js"
5 changes: 3 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@
}
},
"rules": {
"react/jsx-filename-extension": [1, {"extensions": [".js"]}],
"react/jsx-filename-extension": [1, {"extensions": [".js", ".jsx"]}],
"react/prefer-stateless-function": "off",
"no-param-reassign":"off"
}
},
"parser": "babel-eslint"
}
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ install:
- npm install coveralls
- npm install
script:
- npm run lint
- npm test -- -u --coverage
after_success:
- coveralls < coverage/lcov.info
Loading

0 comments on commit 932c343

Please sign in to comment.