Skip to content

Commit

Permalink
Linted code
Browse files Browse the repository at this point in the history
  • Loading branch information
yellowcap committed Feb 28, 2024
1 parent dd6f1e6 commit 4c7bfd4
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 27 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ A Destination Earth DESP use case.

Tho contribute to DestinE Open Source SW collections please refer to [Rule of Participation](docs/rule_of_participation.md)


## Code of Conduct

DestinE open source community abide to this [Code of Conduct](docs/code_of_conduct.md)
6 changes: 3 additions & 3 deletions docs/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ root: intro
parts:
- caption: About
chapters:
- file: contribute
- file: code_of_conduct
- file: rule_of_participation
- file: contribute
- file: code_of_conduct
- file: rule_of_participation
88 changes: 65 additions & 23 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,76 @@
# If you wish to continue using _config.yml, make edits to that file and
# re-generate this one.
###############################################################################
author = 'Pangeo'
bibtex_bibfiles = ['references.bib']
comments_config = {'hypothesis': False, 'utterances': False}
copyright = '2023'
exclude_patterns = ['**.ipynb_checkpoints', '.DS_Store', 'Thumbs.db', '_build']
extensions = ['sphinx_togglebutton', 'sphinx_copybutton', 'myst_nb', 'jupyter_book', 'sphinx_thebe', 'sphinx_comments', 'sphinx_external_toc', 'sphinx.ext.intersphinx', 'sphinx_design', 'sphinx_book_theme', 'sphinx_exercise', 'sphinxcontrib.bibtex', 'sphinx_jupyterbook_latex', 'sphinx_multitoc_numbering']
author = "Pangeo"
bibtex_bibfiles = ["references.bib"]
comments_config = {"hypothesis": False, "utterances": False}
copyright = "2023"
exclude_patterns = ["**.ipynb_checkpoints", ".DS_Store", "Thumbs.db", "_build"]
extensions = [
"sphinx_togglebutton",
"sphinx_copybutton",
"myst_nb",
"jupyter_book",
"sphinx_thebe",
"sphinx_comments",
"sphinx_external_toc",
"sphinx.ext.intersphinx",
"sphinx_design",
"sphinx_book_theme",
"sphinx_exercise",
"sphinxcontrib.bibtex",
"sphinx_jupyterbook_latex",
"sphinx_multitoc_numbering",
]
external_toc_exclude_missing = True
external_toc_path = '_toc.yml'
html_baseurl = ''
html_favicon = ''
html_js_files = ['https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js']
html_logo = './images/gfts.png'
html_sourcelink_suffix = ''
html_theme = 'sphinx_book_theme'
html_theme_options = {'search_bar_text': 'Search this book...', 'launch_buttons': {'notebook_interface': 'jupyterlab', 'binderhub_url': 'https://notebooks.gesis.org/binder/', 'jupyterhub_url': 'http://pangeo-eosc.vm.fedcloud.eu/jupyterhub/', 'thebe': False, 'colab_url': ''}, 'path_to_docs': 'docs', 'repository_url': 'https://github.com/destination-earth/DestinE_ESA_GFTS', 'repository_branch': 'main', 'extra_footer': '', 'home_page_in_toc': True, 'announcement': '', 'analytics': {'google_analytics_id': ''}, 'use_repository_button': True, 'use_edit_page_button': False, 'use_issues_button': True}
html_title = 'Global Fish Tracking System (GFTS) - DESP use case'
latex_engine = 'pdflatex'
myst_enable_extensions = ['colon_fence', 'dollarmath', 'linkify', 'substitution', 'tasklist']
myst_url_schemes = ['mailto', 'http', 'https']
external_toc_path = "_toc.yml"
html_baseurl = ""
html_favicon = ""
html_js_files = [
"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"
]
html_logo = "./images/gfts.png"
html_sourcelink_suffix = ""
html_theme = "sphinx_book_theme"
html_theme_options = {
"search_bar_text": "Search this book...",
"launch_buttons": {
"notebook_interface": "jupyterlab",
"binderhub_url": "https://notebooks.gesis.org/binder/",
"jupyterhub_url": "http://pangeo-eosc.vm.fedcloud.eu/jupyterhub/",
"thebe": False,
"colab_url": "",
},
"path_to_docs": "docs",
"repository_url": "https://github.com/destination-earth/DestinE_ESA_GFTS",
"repository_branch": "main",
"extra_footer": "",
"home_page_in_toc": True,
"announcement": "",
"analytics": {"google_analytics_id": ""},
"use_repository_button": True,
"use_edit_page_button": False,
"use_issues_button": True,
}
html_title = "Global Fish Tracking System (GFTS) - DESP use case"
latex_engine = "pdflatex"
myst_enable_extensions = [
"colon_fence",
"dollarmath",
"linkify",
"substitution",
"tasklist",
]
myst_url_schemes = ["mailto", "http", "https"]
nb_execution_allow_errors = False
nb_execution_cache_path = ''
nb_execution_cache_path = ""
nb_execution_excludepatterns = []
nb_execution_in_temp = False
nb_execution_mode = 'force'
nb_execution_mode = "force"
nb_execution_timeout = 1000
nb_output_stderr = 'show'
nb_output_stderr = "show"
numfig = True
pygments_style = 'sphinx'
suppress_warnings = ['myst.domains']
pygments_style = "sphinx"
suppress_warnings = ["myst.domains"]
use_jupyterbook_latex = True
use_multitoc_numbering = True

0 comments on commit 4c7bfd4

Please sign in to comment.