This commit is contained in:
zwjamnsss 2017-07-10 21:55:21 +08:00
parent cd5dff1045
commit d2b2692ee1
3 changed files with 4 additions and 3 deletions

View File

@ -16,6 +16,7 @@ module.exports = {
rules: {
"indent": ["error", 2, { "SwitchCase": 1 }],
"react/display-name": ["off"],
"react/jsx-indent": ["error", 2]
"react/jsx-indent": ["error", 2],
"comma-dangle": ["error", "only-multiline"],
}
}

View File

@ -7,7 +7,7 @@ class Login extends Component {
constructor(props) {
super(props)
}
static propTypes = {
value: PropTypes.string,
per: PropTypes.string,

View File

@ -5,5 +5,5 @@ import ProjectGroups from './ProjectGroups/ProjectGroups.js'
export {
Home,
Login,
ProjectGroups
ProjectGroups,
}