From 96ac5c37de1b7cc258716e4d4ef8963bc06efc11 Mon Sep 17 00:00:00 2001 From: Kyle Roeschley Date: Mon, 10 Jun 2024 14:27:30 -0500 Subject: [PATCH] Ignore documentation errors in Sphinx config --- ni_python_styleguide/config.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ni_python_styleguide/config.ini b/ni_python_styleguide/config.ini index df28514..e3ced7b 100644 --- a/ni_python_styleguide/config.ini +++ b/ni_python_styleguide/config.ini @@ -115,6 +115,8 @@ ignore = per-file-ignores= # We want to ignore missing docstrings in test methods as they are self documenting tests/**/test_*.py,tests/test_*.py:D100,D103,D102 + # We don't need to document every Sphinx config + docs/conf.py:D1 # __init__.py files routinely import other modules without directly using them __init__.py:F401