[ty] Disable possibly-missing-imports by default (#22041)

@carljm put forth a reasonably compelling argument that just disabling
this lint might be advisable. If we agree, here's the implementation.

* Fixes https://github.com/astral-sh/ty/issues/309

---------

Co-authored-by: Carl Meyer <carl@astral.sh>
This commit is contained in:
Aria Desires
2025-12-18 15:06:34 -05:00
committed by GitHub
parent 45bbb4cbff
commit 2e44a861cb
5 changed files with 35 additions and 35 deletions

View File

@@ -1594,7 +1594,7 @@ declare_lint! {
pub(crate) static POSSIBLY_MISSING_IMPORT = {
summary: "detects possibly missing imports",
status: LintStatus::stable("0.0.1-alpha.22"),
default_level: Level::Warn,
default_level: Level::Ignore,
}
}