16

When u send ur code for review and instead of getting comments for logic u put in, u get 10+ comments regarding variable names , extra lines and formatting.
LMF

Comments
  • 1
    You still send code for review
  • 1
    @Pgdevpatryk amazon believes in code quality.
  • 2
    I was initially fed up. But now have realised that code quality both in terms of logic and consistency in coding style is important.
    Now I use eslinter on sublime. That kind of trained me to follow the style
  • 1
    for (int decrease=0; decrease<100; decrease++) {
    System.out.print("I'm "+ decrease+"% screwed");
    }
  • 4
    code style is important too, it helps making the code readable to other people
  • 1
    I ain't got time for that. I'm fixing it later.
  • 1
    Try rubocop it will fix that for you.
Add Comment