We need to ignore a number of fields when update to pylint 4.0.6 to not cause issues:
In tests folders:
no-cross-package-private-import - This catches us testing our own private methods.
In samples folders:
reimported, wrong-import-position, wrong-import-order, and ungrouped-imports - These all fall under us using the sample snipping tool to populate the readme. We include the same import in a file multiple times, and as needed throughout which triggers all of these.
We need to ignore a number of fields when update to pylint 4.0.6 to not cause issues:
In tests folders:
no-cross-package-private-import- This catches us testing our own private methods.In samples folders:
reimported,wrong-import-position,wrong-import-order, andungrouped-imports- These all fall under us using the sample snipping tool to populate the readme. We include the same import in a file multiple times, and as needed throughout which triggers all of these.