Avoid D100 for Jupyter Notebooks (#8816)

This PR avoids triggering `D100` for Jupyter Notebooks.

Part of #8669
This commit is contained in:
Dhruv Manilawala 2023-11-22 09:26:25 -06:00 committed by GitHub
parent 63a87dda63
commit 0cb438dd65
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 51 additions and 0 deletions

View file

@ -62,6 +62,7 @@ mod tests {
#[test_case(Rule::UndocumentedPublicMethod, Path::new("D.py"))]
#[test_case(Rule::UndocumentedPublicMethod, Path::new("setter.py"))]
#[test_case(Rule::UndocumentedPublicModule, Path::new("D.py"))]
#[test_case(Rule::UndocumentedPublicModule, Path::new("D100.ipynb"))]
#[test_case(
Rule::UndocumentedPublicModule,
Path::new("_unrelated/pkg/D100_pub.py")