pre-commit: run black without string normalization

This commit is contained in:
Erik Sundell
2021-11-01 09:42:45 +01:00
parent e75de14839
commit 771ae59636
32 changed files with 691 additions and 587 deletions

View File

@@ -12,9 +12,7 @@ version = ''
release = 'v0.1'
# Enable MathJax for Math
extensions = ['sphinx.ext.mathjax',
'sphinx.ext.intersphinx',
'sphinx_copybutton']
extensions = ['sphinx.ext.mathjax', 'sphinx.ext.intersphinx', 'sphinx_copybutton']
# The root toctree document.
root_doc = master_doc = "index"
@@ -22,14 +20,13 @@ root_doc = master_doc = "index"
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path .
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store',
'install/custom.rst']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'install/custom.rst']
intersphinx_mapping = {
'sphinx': ('http://www.sphinx-doc.org/en/master/', None),
}
intersphinx_cache_limit = 90 # days
intersphinx_cache_limit = 90 # days
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'