Update HACKING document to match current checks

The HACKING document had gotten out of date with a few removals and
additions of hacking checks. This gets it synced up with the current
state of our checks.

Change-Id: I8ace7662bb11d5708dd507b79f4a2476c9875ac5
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
This commit is contained in:
Sean McGinnis 2020-04-01 15:48:09 -05:00
parent 99c09bddce
commit b9cf3acfcc
1 changed files with 6 additions and 8 deletions

View File

@ -9,23 +9,21 @@ Cinder Specific Commandments
---------------------------- ----------------------------
- [N322] Ensure default arguments are not mutable. - [N322] Ensure default arguments are not mutable.
- [N323] Add check for explicit import of _() to ensure proper translation. - [N323] Add check for explicit import of _() to ensure proper translation.
- [N336] Must use a dict comprehension instead of a dict constructor with a
sequence of key-value pairs.
- [C301] timeutils.utcnow() from oslo_utils should be used instead of - [C301] timeutils.utcnow() from oslo_utils should be used instead of
datetime.now(). datetime.now().
- [C302] six.text_type should be used instead of unicode. - [C303] Ensure that there are no 'print()' statements are used in code that
- [C303] Ensure that there are no 'print()' statements in code that is being should be using LOG calls.
committed.
- [C304] Enforce no use of LOG.audit messages. LOG.info should be used instead.
- [C305] Prevent use of deprecated contextlib.nested.
- [C306] timeutils.strtime() must not be used (deprecated). - [C306] timeutils.strtime() must not be used (deprecated).
- [C307] LOG.warn is deprecated. Enforce use of LOG.warning.
- [C308] timeutils.isotime() must not be used (deprecated). - [C308] timeutils.isotime() must not be used (deprecated).
- [C309] Unit tests should not perform logging. - [C309] Unit tests should not perform logging.
- [C310] Check for improper use of logging format arguments. - [C310] Check for improper use of logging format arguments.
- [C311] Check for proper naming and usage in option registration. - [C311] Check for proper naming and usage in option registration.
- [C312] Validate that logs are not translated. - [C312] Validate that logs are not translated.
- [C313] Check that assertTrue(value) is used and not assertEqual(True, value). - [C313] Check that assertTrue(value) is used and not assertEqual(True, value).
- [C336] Must use a dict comprehension instead of a dict constructor with a
sequence of key-value pairs.
- [C337] Ensure the standard library mock modules is used and not the third
party mock library that was needed for Python 2 support.
General General
------- -------