Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 680 Bytes

coding_standards.rst

File metadata and controls

13 lines (10 loc) · 680 Bytes

Coding Standards

  • Python code style outlined in PEP8
  • Doxygen, Python docstrings, and Sphinx for documentation
  • NOTE: Please do not use f-strings in the run_metplus.py file so that the Python version check can notify the user of the incorrect version. Using Python 3.5 or earlier will output the SyntaxError from the f-string instead of the useful error message.

Python code analysis tools like pylint can be used to check for errors and violations of PEP8 standards.