DEV Community

Discussion on: How would you define high quality code?

Collapse
 
joshichinmay profile image
Chinmay Joshi
  1. Easily accessible - simple file structure and well organised
  2. Self-explanatory - meaningful names for files, variables, methods, etc.
  3. That doesn't mean commented code is unacceptable.
  4. Aesthetics - Well indented - tabs size, spaces, etc.
  5. With test cases.
  6. Reviewed by collaborators.
  7. Readable. Not over optimised.