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 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