Skip to content
Snippets Groups Projects

Feature/ignore trailing comma

Merged Karel van Klink requested to merge feature/ignore-trailing-comma into develop
9 files
+ 21
91
Compare changes
  • Side-by-side
  • Inline
Files
9
+ 4
8
@@ -16,9 +16,7 @@ import json
import os
import sys
sys.path.insert(
0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "lso"))
)
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "lso")))
class RenderAsJSON(Directive):
@@ -37,7 +35,7 @@ class RenderAsJSON(Directive):
return [
addnodes.desc_name(text=member_name),
addnodes.desc_content("", literal),
addnodes.desc_content("", literal)
]
@@ -57,7 +55,7 @@ extensions = [
"sphinx_rtd_theme",
"sphinx.ext.autodoc",
"sphinx.ext.coverage",
"sphinx.ext.todo",
"sphinx.ext.todo"
]
templates_path = ["templates"]
@@ -67,9 +65,7 @@ exclude_patterns = []
html_theme = "sphinx_rtd_theme"
html_static_path = ["_static"]
html_theme_options = {
"style_nav_header_background": "rgb(0 63 95)",
}
html_theme_options = {"style_nav_header_background": "rgb(0 63 95)"}
html_css_files = ["custom.css"]
html_logo = "_static/geant_logo_white.svg"
Loading