Skip to content

Commit 9134422

Browse files
committed
base: disable id-length
1 parent bc5f707 commit 9134422

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rules/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ module.exports = {
180180
'func-style': 0, // enforce the consistent use of either `function` declarations or expressions
181181
'function-paren-newline': [1, 'consistent'], // enforce consistent line breaks inside function parentheses
182182
'id-blacklist': 0, // disallow specified identifiers
183-
'id-length': [1, { exceptions: ['_', '$', 'i', 'j', 'k'] }], // enforce minimum and maximum identifier lengths
183+
'id-length': [0, { exceptions: ['_', '$', 'i', 'j', 'k'] }], // enforce minimum and maximum identifier lengths
184184
'id-match': 0, // require identifiers to match a specified regular expression
185185
'implicit-arrow-linebreak': 0, // enforce the location of arrow function bodies
186186
indent: [

0 commit comments

Comments
 (0)