From fff104b43975948ffc3aae777fbc759adeb9f2c9 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Sun, 30 May 2021 11:55:52 -0700 Subject: [PATCH] Rename linting pass to match internal changes The name is cleaner and more correct --- docs/_pages/lint.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_pages/lint.md b/docs/_pages/lint.md index 2977a103..fc5d7cb3 100644 --- a/docs/_pages/lint.md +++ b/docs/_pages/lint.md @@ -233,7 +233,7 @@ print({ }) ``` -## DeadLocal (20) +## UninitializedLocal (20) It's easy to forget to initialize a local variable and then proceed to use it regardless. This can happen due to a typo, or sometimes it can happen because the original variable definition is shadowed. When a local variable doesn't have an initial value and is used without ever being assigned to, this warning is emitted: