-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
13/Apr/2018 Technical Code-Review notes #3
Comments
node ./node_modules/eslint/bin/eslint.js ./src
"env": {
"browser": true,
"node": true,
....
}
import { myAction } from './action'
....
Class test extends Component {
someMethod() {
this.props.myAction()
}
}
....
const mapDispatchToProps = dispatch => bindActionCreators({
myAction,
}, dispatch);
export default connect(
mapStateToProps,
mapDispatchToProps,
)(test);
case 'ERROR_HANDLER':
{
navigator.notification.alert(action.payload, null, 'Room Manager', 'OK'); // this is bad
return state;
}
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
build
process). Actually why do you needmaster
branch, can you do development work atcordova
branch?dotenv
package to remove dependencies from codebase https://github.com/DmytroRoik/Project-X/blob/master/src/config.jsis
if value on variable is boolean (calendarListShow
=>isCalendarListShow
) https://github.com/DmytroRoik/Project-X/blob/master/src/App/App.js#L17console.log
from code{ errors }
instead of{ errors: errors }
for object's destructuringThe text was updated successfully, but these errors were encountered: