From 34f91f8129ec37c06f5d0daeffbf6913fd9edc7e Mon Sep 17 00:00:00 2001 From: Felicity Chapman Date: Mon, 13 May 2024 16:23:06 +0100 Subject: [PATCH] Stop building the CodeQL for VS Code docs --- docs/codeql/conf.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/codeql/conf.py b/docs/codeql/conf.py index fca3f272647..5bc008b7a10 100644 --- a/docs/codeql/conf.py +++ b/docs/codeql/conf.py @@ -2,13 +2,13 @@ # # The Sphinx config values used in the CodeQL documentation that is published # at codeql.github.com/docs -# +# # Note that not all possible configuration values are present in this file. # # All configuration values have a default; values that are commented out # serve to show the default. # -# For details of all possible config values, +# For details of all possible config values, # see https://www.sphinx-doc.org/en/master/usage/configuration.html # # -- GENERAL CONFIG VALUES ------------------------------------------------ @@ -53,7 +53,7 @@ import sphinx as sphinx_mod def setup(sphinx): - sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) + sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) from qllexer import QLLexer sphinx.add_lexer("ql", QLLexer() if sphinx_mod.version_info[0] <= 3 else QLLexer) @@ -86,7 +86,7 @@ html_theme = 'alabaster' # HTML theme options used to customize the look and feel of the docs. html_theme_options = {'font_size': '16px', - 'body_text': '#333', + 'body_text': '#333', 'link': '#2F1695', 'link_hover': '#2F1695', 'show_powered_by': False, @@ -106,4 +106,4 @@ html_extra_path = ['index.html'] html_favicon = 'images/site/favicon.ico' # Exclude these paths from being built by Sphinx -exclude_patterns = ['vale*', '_static', '_templates', 'reusables', 'images', 'support', 'ql-training', 'query-help', '_build', '*.py*', 'README.rst'] +exclude_patterns = ['vale*', '_static', '_templates', 'reusables', 'images', 'support', 'ql-training', 'query-help', '_build', '*.py*', 'README.rst', 'codeql-for-visual-studio-code']