mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-03 15:15:33 +00:00
Avoid D100
for Jupyter Notebooks (#8816)
This PR avoids triggering `D100` for Jupyter Notebooks. Part of #8669
This commit is contained in:
parent
63a87dda63
commit
0cb438dd65
4 changed files with 51 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue