rf: change line length to 88 chars

This commit is contained in:
Benjamin Kirkbride
2020-04-18 01:24:56 -04:00
parent ec0c95ad06
commit 11ae5f1050
10 changed files with 1758 additions and 59 deletions

View File

@@ -20,11 +20,11 @@
import os
import sys
project = 'PyTiled Parser'
copyright = '2019, Beefy-Swain'
author = 'Beefy-Swain'
project = "PyTiled Parser"
copyright = "2019, Beefy-Swain"
author = "Beefy-Swain"
sys.path.insert(0, os.path.abspath('../..'))
sys.path.insert(0, os.path.abspath("../.."))
# -- General configuration ---------------------------------------------------
@@ -32,22 +32,22 @@ sys.path.insert(0, os.path.abspath('../..'))
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.intersphinx',
'sphinx.ext.todo',
'sphinx.ext.coverage',
'sphinx.ext.ifconfig',
'sphinx.ext.viewcode',
"sphinx.ext.autodoc",
"sphinx.ext.intersphinx",
"sphinx.ext.todo",
"sphinx.ext.coverage",
"sphinx.ext.ifconfig",
"sphinx.ext.viewcode",
]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
templates_path = ["_templates"]
source_suffix = '.rst'
source_suffix = ".rst"
master_doc = 'index'
master_doc = "index"
pygments_style = 'sphinx'
pygments_style = "sphinx"
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
@@ -60,9 +60,9 @@ exclude_patterns = []
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'sphinx_rtd_theme'
html_theme = "sphinx_rtd_theme"
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_static_path = ["_static"]