From 141c0dae9b60de303828fdc015879b9f3e2b9ad9 Mon Sep 17 00:00:00 2001 From: mshafer-NI <23644905+mshafer-NI@users.noreply.github.com> Date: Fri, 21 Aug 2026 17:22:52 -0500 Subject: [PATCH 1/2] add new codes to ignore --- ni_python_styleguide/config.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ni_python_styleguide/config.ini b/ni_python_styleguide/config.ini index 6fa818a4..8a8cf7cb 100644 --- a/ni_python_styleguide/config.ini +++ b/ni_python_styleguide/config.ini @@ -111,6 +111,9 @@ ignore = # flake8-import-order # I101 - The names in your from import are in the wrong order. (Enforced by E401) I101 + # I300, I301 - Blank lines around imports and if TYPE_CHECKING. We will use BLK100 + I300 + I301 per-file-ignores= # We want to ignore missing docstrings in test methods as they are self documenting From 5247b94f6e145cff67f63d0c54fb37cd3088fae5 Mon Sep 17 00:00:00 2001 From: mshafer-NI <23644905+mshafer-NI@users.noreply.github.com> Date: Fri, 21 Aug 2026 17:25:23 -0500 Subject: [PATCH 2/2] update changelog accordingly --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4840b78c..87767c87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Ignore I300 and I301 in favor of BLK100 (#327) + ## [0.5.1] - 2026-07-17 ### Changed