Skip to content

Commit

Permalink
Fix warnings in sphinx build.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaander committed May 29, 2024
1 parent f58db40 commit 978405e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions doc/style.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Python code in GSD should follow `PEP8`_ with the formatting performed by
Tools
^^^^^

* Linter: `ruff <https://github.com/astral-sh/ruff`_
* Linter: `ruff`_

* With these extensions:

Expand Down Expand Up @@ -69,14 +69,14 @@ C++/CUDA

* Naming conventions:

* Namespaces: All lowercase ``somenamespace``
* Class names: ``UpperCamelCase``
* Methods: ``lowerCamelCase``
* Member variables: ``m_`` prefix followed by lowercase with words
separated by underscores ``m_member_variable``
* Constants: all upper-case with words separated by underscores
``SOME_CONSTANT``
* Functions: ``lowerCamelCase``
* Namespaces: All lowercase ``somenamespace``
* Class names: ``UpperCamelCase``
* Methods: ``lowerCamelCase``
* Member variables: ``m_`` prefix followed by lowercase with words
separated by underscores ``m_member_variable``
* Constants: all upper-case with words separated by underscores
``SOME_CONSTANT``
* Functions: ``lowerCamelCase``

Tools
^^^^^
Expand Down

0 comments on commit 978405e

Please sign in to comment.