Skip to content

Commit

Permalink
Replace Gulp with Webpack, JSHint with ESLint
Browse files Browse the repository at this point in the history
Use react-router 1.0.0 RC API
  • Loading branch information
insin committed Oct 8, 2015
1 parent f2e7b4e commit bc075ca
Show file tree
Hide file tree
Showing 13 changed files with 655 additions and 687 deletions.
4 changes: 4 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"stage": 2,
"loose": "all"
}
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
demo/
dist/
lib/
13 changes: 13 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": ["standard", "standard-react"],
"rules": {
"brace-style": [2, "stroustrup", {"allowSingleLine": true}],
"eqeqeq": [2, "smart"],
"jsx-quotes": [2, "prefer-double"],
"react/prop-types": 0,
"react/self-closing-comp": 0,
"react/wrap-multilines": 0,
"space-before-function-paren": [2, "never"]
},
"parser": "babel-eslint"
}
24 changes: 0 additions & 24 deletions .jshintrc

This file was deleted.

10 changes: 10 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
dist/
src/
test/
.babelrc
.eslintrc
.eslintignore
.gitignore
.travis.yml
webpack.config.js
webpack.prod.config.js
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
## React Router `<Form>`

A `<Form>` component for use with
[react-router](https://github.com/rackt/react-router)
which does for `<form>` what react-router's
[`<Link>` component](https://github.com/rackt/react-router/blob/master/docs/api/components/Link.md)
does for `<a>`.
A `<Form>` component for use with [React Router](https://github.com/rackt/react-router) which does for `<form>` what react-router's `<Link>` does for `<a>`.

## MIT Licensed
## MIT Licensed
Loading

0 comments on commit bc075ca

Please sign in to comment.