diff --git a/README.md b/README.md
index 7faa68e2..909cbbf0 100644
--- a/README.md
+++ b/README.md
@@ -1299,7 +1299,7 @@ Other Style Guides
## Variables
- - [13.1](#variables--const) Always use `const` to declare variables. Not doing so will result in global variables. We want to avoid polluting the global namespace. Captain Planet warned us of that.
+ - [13.1](#variables--const) Always use `const` to declare variables. Not doing so will result in global variables. We want to avoid polluting the global namespace. Captain Planet warned us of that. eslint: [`no-undef`](http://eslint.org/docs/rules/no-undef) [`prefer-const`](http://eslint.org/docs/rules/prefer-const)
```javascript
// bad
@@ -2327,7 +2327,7 @@ Other Style Guides
## Naming Conventions
- - [22.1](#naming--descriptive) Avoid single letter names. Be descriptive with your naming.
+ - [22.1](#naming--descriptive) Avoid single letter names. Be descriptive with your naming. eslint: [`id-length`](http://eslint.org/docs/rules/id-length)
```javascript
// bad