From 0aa96070b46eed1b70f3f66bcaefd7028d99430e Mon Sep 17 00:00:00 2001 From: Abizer <123445462+aluqmanj-ni@users.noreply.github.com> Date: Fri, 10 Jul 2026 16:11:08 -0500 Subject: [PATCH] Ignore documentation for AI scripts in 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 6fa818a4..6019c5d6 100644 --- a/ni_python_styleguide/config.ini +++ b/ni_python_styleguide/config.ini @@ -117,6 +117,8 @@ per-file-ignores= tests/**/test_*.py,tests/test_*.py:D100,D103,D102 # We don't need to document every Sphinx config docs/conf.py:D1 + # We don't need to document AI scripts + .build/ai/**:D1 # __init__.py files routinely import other modules without directly using them __init__.py:F401