Skip to content

Commit

Permalink
Enforce stricter ESLint rules
Browse files Browse the repository at this point in the history
This is _MY_ project!
  • Loading branch information
aduth committed May 27, 2017
1 parent 8075ee8 commit 8a4f4ba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
}
},
"rules": {
"no-cond-assign": 0,
"react/jsx-no-bind": 0
"no-cond-assign": "off",
"react/jsx-no-bind": "off",
"comma-dangle": "error",
"arrow-parens": "error"
}
}
2 changes: 1 addition & 1 deletion src/routes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ export default map( [
path,
keys,
Route,
regexp: pathToRegexp( path, keys ),
regexp: pathToRegexp( path, keys )
};
} );

0 comments on commit 8a4f4ba

Please sign in to comment.