diff --git a/README.md b/README.md index b807154d99..e486ae170e 100644 --- a/README.md +++ b/README.md @@ -1743,6 +1743,7 @@ Other Style Guides const foo = 'superLongLongLongLongLongLongLongLongString'; ``` + - [13.8](#variables--no-unused-vars) Disallow unused variables. eslint: [`no-unused-vars`](https://eslint.org/docs/rules/no-unused-vars) > Why? Variables that are declared and not used anywhere in the code are most likely an error due to incomplete refactoring. Such variables take up space in the code and can lead to confusion by readers.