Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
🔧 allow some common one-letter variables
Browse files Browse the repository at this point in the history
  • Loading branch information
mistadikay authored and Kir Belevich committed Nov 9, 2016
1 parent 11167c0 commit c006294
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion config/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,10 @@ module.exports = {
'eol-last': 2,
'func-call-spacing': [ 2, 'never' ],
'func-style': [ 1, 'expression' ],
'id-length': [ 2, { min: 2 } ],
'id-length': [ 2, {
min: 2,
exceptions: [ 'x', 'y', 'z', 'e', 'i' ]
} ],
indent: [ 2, 4, { SwitchCase: 1 } ],
'key-spacing': [ 2, {
beforeColon: false,
Expand Down

0 comments on commit c006294

Please sign in to comment.