Skip to content

Commit

Permalink
Fixed unit testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisIsManta committed Apr 30, 2017
1 parent d6f1d3c commit 7f1260f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions edge/createFormattingOptionsFromStylint.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const stylintOptionMap = {
quotePref: ['quoteChar', value => (value === 'single' && '\'' || value === 'double' && '"' || undefined)],
semicolons: ['insertSemicolons', createAdapterForAlwaysNeverFalse],
sortOrder: ['sortProperties', value => value, 'insertNewLineAroundProperties', value => value === 'grouped' ? true : undefined],
none: ['alwaysUseNoneOverZero', createAdapterForAlwaysNeverFalse],
zeroUnits: ['alwaysUseZeroWithoutUnit', value => value === false ? undefined : value === 'never'],
}

Expand Down

0 comments on commit 7f1260f

Please sign in to comment.