We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add_config_value('js_source_path')
In https://bugzilla.mozilla.org/show_bug.cgi?id=1734199 I'm getting a warning whenever I run ./mach doc:
./mach doc
WARNING: The config value js_source_path' has type list', defaults to `str'.
js_source_path' has type
That message seemingly is from https://github.com/sphinx-doc/sphinx/blob/c922189920ec36fe34aab41ee467a854849a57b8/sphinx/config.py#L456 and caused by:
sphinx-js/sphinx_js/__init__.py
Line 35 in a1ee456
I guess the call should be something like:
app.add_config_value('js_source_path', '../', 'env', types=[str, list])
The text was updated successfully, but these errors were encountered:
Add types to add_config_value("js_source_path") call (#182)
62e64e5
The `type` argument for add_config_value() defaults to `str`, but `js_source_path` takes a str or list of strings as a value, so this fixes that.
Successfully merging a pull request may close this issue.
In https://bugzilla.mozilla.org/show_bug.cgi?id=1734199 I'm getting a warning whenever I run
./mach doc
:That message seemingly is from https://github.com/sphinx-doc/sphinx/blob/c922189920ec36fe34aab41ee467a854849a57b8/sphinx/config.py#L456 and caused by:
sphinx-js/sphinx_js/__init__.py
Line 35 in a1ee456
I guess the call should be something like:
The text was updated successfully, but these errors were encountered: