diff --git a/1-js/3-code-quality/index.md b/1-js/3-code-quality/index.md index 96320c44..43923a74 100644 --- a/1-js/3-code-quality/index.md +++ b/1-js/3-code-quality/index.md @@ -1,8 +1,8 @@ -# Качество кода +# Code quality -Для того, чтобы код был качественным, необходимы как минимум: +In order to keep the code quality, you need at least:
    -
  1. Умение отладить код и поправить ошибки.
  2. -
  3. Хороший стиль кода.
  4. -
  5. Тестировать код, желательно -- в автоматическом режиме.
  6. -
\ No newline at end of file +
  • The ability to debug code and fix bugs.
  • +
  • Good style code.
  • +
  • Test code is desirable - in automatic mode.
  • +