X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=eslint%2Fdocs%2Frules%2Fno-undef-init.md;h=10bde7769bc5880d1c1bed33ded9ac41d0960e70;hb=34eeec05c48d011f9a080215e348245aed3c0db1;hp=0cf99c192961e4972c671e4098fa719bf43a3acd;hpb=7a730cb60189b4b2b4c0e167797d9aa1ccf15ea6;p=pve-eslint.git diff --git a/eslint/docs/rules/no-undef-init.md b/eslint/docs/rules/no-undef-init.md index 0cf99c1..10bde77 100644 --- a/eslint/docs/rules/no-undef-init.md +++ b/eslint/docs/rules/no-undef-init.md @@ -16,7 +16,6 @@ var foo = undefined; It's considered a best practice to avoid initializing variables to `undefined`. - ## Rule Details This rule aims to eliminate `var` and `let` variable declarations that initialize to `undefined`.