Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 804 Bytes

File metadata and controls

37 lines (23 loc) · 804 Bytes

Contributing

License

By contributing to this repository/project you are licensing your contributions under MIT license.

Coding Guidelines

  • Limit characters to 79 characters per line

  • Add one empty line at the end of a file (POSIX 3.206 Line)

  • Python files must follow the rules defined in pyproject.toml

  • Python files must have the following header

    .. code-block:: python :linenos:

    #!/usr/bin/env python3

    encoding: utf-8

    SPDX-License-Identifier: MIT

  • lua files must have the following header

    .. code-block:: lua :linenos:

    #!/usr/bin/env lua

    -- SPDX-License-Identifier: MIT

  • C/C++ files must have the following header

    .. code-block:: C :linenos:

    /* SPDX-License-Identifier: MIT */