changes after initial review
Signed-off-by: Ryan Johnson <ryancj14@gmail.com>
This commit is contained in:
parent
a166626b25
commit
0da09dafff
|
@ -1,4 +1,3 @@
|
||||||
build
|
build
|
||||||
env
|
env
|
||||||
__pycache__
|
__pycache__
|
||||||
symbiflow
|
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
[style]
|
||||||
|
based_on_style = pep8
|
||||||
|
split_before_expression_after_opening_paren = True
|
||||||
|
split_before_first_argument = True
|
||||||
|
split_complex_comprehension = True
|
||||||
|
split_penalty_comprehension = 2100
|
||||||
|
dedent_closing_brackets=True
|
||||||
|
indent_dictionary_value=True
|
2
Makefile
2
Makefile
|
@ -27,4 +27,4 @@ format:
|
||||||
clean::
|
clean::
|
||||||
rm -rf env/ symbiflow/
|
rm -rf env/ symbiflow/
|
||||||
|
|
||||||
.PHONY: env format clean
|
.PHONY: env format clean
|
||||||
|
|
|
@ -67,7 +67,10 @@ exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
||||||
html_show_sourcelink = True
|
html_show_sourcelink = True
|
||||||
html_sidebars = {
|
html_sidebars = {
|
||||||
"**":
|
"**":
|
||||||
["logo-text.html", "globaltoc.html", "localtoc.html", "searchbox.html"]
|
[
|
||||||
|
"logo-text.html", "globaltoc.html", "localtoc.html",
|
||||||
|
"searchbox.html"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
html_theme = 'sphinx_material'
|
html_theme = 'sphinx_material'
|
||||||
|
|
Loading…
Reference in New Issue