From 06ed38d57f70df7aeb7514672a9c205a4eae77d9 Mon Sep 17 00:00:00 2001 From: Jake Teton-Landis Date: Thu, 5 Nov 2015 15:18:59 -0800 Subject: [PATCH] [eslint] remove id length rule (too much nutrage) --- packages/eslint-config-airbnb/rules/style.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-config-airbnb/rules/style.js b/packages/eslint-config-airbnb/rules/style.js index 6fce467280..c1d9ab9df8 100644 --- a/packages/eslint-config-airbnb/rules/style.js +++ b/packages/eslint-config-airbnb/rules/style.js @@ -21,7 +21,7 @@ module.exports = { // enforces use of function declarations or expressions 'func-style': 0, // this option enforces minimum and maximum identifier lengths (variable names, property names etc.) - 'id-length': [2, {'min': 2, 'properties': 'never'}], + 'id-length': 0, // this option sets a specific tab width for your code 'indent': [2, 2], // specify whether double or single quotes should be used in JSX attributes