Skip to content

Commit c5d3a34

Browse files
committed
Merge pull request airbnb#569 from airbnb/jake/remove-id-length-rule
[eslint] remove id length rule (too much nutrage)
2 parents 8514f74 + 06ed38d commit c5d3a34

File tree

1 file changed

+1
-1
lines changed
  • packages/eslint-config-airbnb/rules

1 file changed

+1
-1
lines changed

packages/eslint-config-airbnb/rules/style.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.exports = {
2121
// enforces use of function declarations or expressions
2222
'func-style': 0,
2323
// this option enforces minimum and maximum identifier lengths (variable names, property names etc.)
24-
'id-length': [2, {'min': 2, 'properties': 'never'}],
24+
'id-length': 0,
2525
// this option sets a specific tab width for your code
2626
'indent': [2, 2],
2727
// specify whether double or single quotes should be used in JSX attributes

0 commit comments

Comments
 (0)