Update developer docs to note that ES6 should be used and tests should be included.

This commit is contained in:
Dave Page 2018-04-06 10:06:35 +01:00
parent 8ec51412c3
commit a97e4c76e4
2 changed files with 6 additions and 0 deletions

View File

@ -9,6 +9,9 @@ review process for any patches submitted for inclusion in pgAdmin.
* Ensure all code follows the pgAdmin :doc:`coding_standards`.
* Ensure all code has unit test coverage and API/feature test coverage where
appropriate.
* Copyright years must be correct and properly formatted (to make it easy to make
bulk updates every year). The start date should always be 2013, and the end year
the current year, e.g.

View File

@ -106,6 +106,9 @@ Note the use of a descriptive function name, using the underscore character to
separate words in all lower case, and short but descriptive lower case variable
names.
.. note:: From version 3.0 onwards, new or refactored code should be written using
ES6 features and conventions.
C++
---