Skip to content

Commit

Permalink
Updated files with 'repo_helper'. (#131)
Browse files Browse the repository at this point in the history
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
  • Loading branch information
repo-helper[bot] committed Apr 16, 2024
1 parent 2c0a8ff commit cde94fc
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 26 deletions.
6 changes: 6 additions & 0 deletions doc-source/conf.py
Expand Up @@ -70,8 +70,14 @@
def setup(app):
# 3rd party
from sphinx_toolbox.latex import better_header_layout
from sphinxemoji import sphinxemoji

app.connect("config-inited", lambda app, config: better_header_layout(config))
app.connect("build-finished", sphinxemoji.copy_asset_files)
app.add_js_file("https://unpkg.com/twemoji@latest/dist/twemoji.min.js")
app.add_js_file("twemoji.js")
app.add_css_file("twemoji.css")
app.add_transform(sphinxemoji.EmojiSubstitutions)


toctree_plus_types.add("fixture")
16 changes: 8 additions & 8 deletions formate.toml
Expand Up @@ -6,21 +6,17 @@ noqa-reformat = 60
ellipsis-reformat = 70
squish_stubs = 80

[config]
indent = "\t"
line_length = 115

[hooks.yapf]
priority = 30

[hooks.isort]
priority = 50

[hooks.yapf.kwargs]
yapf_style = ".style.yapf"

[hooks.isort]
priority = 50

[hooks.isort.kwargs]
indent = "\t\t"
indent = " "
multi_line_output = 8
import_heading_stdlib = "stdlib"
import_heading_thirdparty = "3rd party"
Expand Down Expand Up @@ -101,3 +97,7 @@ known_third_party = [
"ytools3",
]
known_first_party = [ "repo_helper",]

[config]
indent = " "
line_length = 115
27 changes: 12 additions & 15 deletions pyproject.toml
Expand Up @@ -14,7 +14,6 @@ dynamic = [ "requires-python", "classifiers", "dependencies",]
name = "Dominic Davis-Foster"
email = "dominic@davis-foster.co.uk"


[project.license]
file = "LICENSE"

Expand All @@ -41,6 +40,9 @@ license-key = "LGPL-3.0-or-later"
namespace_packages = [ "ruamel.yaml",]
allowed_unused = [ "idna",]

[tool.dep_checker.name_mapping]
attrs = "attr"

[tool.sphinx-pyproject]
github_username = "repo-helper"
github_repository = "repo_helper"
Expand All @@ -62,7 +64,6 @@ extensions = [
"sphinx.ext.mathjax",
"sphinxcontrib.extras_require",
"sphinx.ext.todo",
"sphinxemoji.sphinxemoji",
"notfound.extension",
"sphinx_copybutton",
"sphinxcontrib.default_values",
Expand All @@ -74,7 +75,6 @@ extensions = [
"sphinx_click",
"sphinx_autofixture",
]
sphinxemoji_style = "twemoji"
gitstamp_fmt = "%d %b %Y"
templates_path = [ "_templates",]
html_static_path = [ "_static",]
Expand Down Expand Up @@ -157,8 +157,15 @@ show_error_codes = true
[tool.snippet-fmt]
directives = [ "code-block",]

[tool.dep_checker.name_mapping]
attrs = "attr"
[tool.snippet-fmt.languages.python]
reformat = true

[tool.snippet-fmt.languages.TOML]
reformat = true

[tool.snippet-fmt.languages.ini]

[tool.snippet-fmt.languages.json]

[tool.dependency-dash."requirements.txt"]
order = 10
Expand All @@ -170,13 +177,3 @@ include = false
[tool.dependency-dash."doc-source/requirements.txt"]
order = 30
include = false

[tool.snippet-fmt.languages.python]
reformat = true

[tool.snippet-fmt.languages.TOML]
reformat = true

[tool.snippet-fmt.languages.ini]

[tool.snippet-fmt.languages.json]
6 changes: 3 additions & 3 deletions tox.ini
Expand Up @@ -126,7 +126,7 @@ deps =
flake8-github-actions>=0.1.0
flake8-noqa>=1.1.0,<=1.2.2
flake8-pyi>=20.10.0,<=22.8.0
flake8-pytest-style>=1.3.0
flake8-pytest-style>=1.3.0,<2
flake8-quotes>=3.3.0
flake8-slots>=0.1.0
flake8-sphinx-links>=0.0.4
Expand Down Expand Up @@ -228,8 +228,8 @@ exclude_lines =
raise NotImplementedError
if 0:
if False:
if TYPE_CHECKING:
if typing.TYPE_CHECKING:
if TYPE_CHECKING
if typing.TYPE_CHECKING
if __name__ == .__main__.:
omit = **/*._py
Expand Down

0 comments on commit cde94fc

Please sign in to comment.