diff --git a/client/.eslintrc.js b/client/.eslintrc.js index bd2b4217..548ae6d6 100644 --- a/client/.eslintrc.js +++ b/client/.eslintrc.js @@ -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"], } } diff --git a/client/containers/Login/Login.js b/client/containers/Login/Login.js index 37400512..0c0d8d73 100644 --- a/client/containers/Login/Login.js +++ b/client/containers/Login/Login.js @@ -7,7 +7,7 @@ class Login extends Component { constructor(props) { super(props) } - + static propTypes = { value: PropTypes.string, per: PropTypes.string, diff --git a/client/containers/index.js b/client/containers/index.js index fc4e1592..d8a2e8d7 100644 --- a/client/containers/index.js +++ b/client/containers/index.js @@ -5,5 +5,5 @@ import ProjectGroups from './ProjectGroups/ProjectGroups.js' export { Home, Login, - ProjectGroups + ProjectGroups, }