diff options
author | Evan Lucas <evanlucas@me.com> | 2015-05-22 09:50:36 -0500 |
---|---|---|
committer | Evan Lucas <evanlucas@me.com> | 2015-05-28 09:35:43 -0500 |
commit | fbd2b597163a687c5485186161891ac54bef441a (patch) | |
tree | c56c825f4073fa9ade8aa8cec653032cc4b2bfdc /.eslintrc | |
parent | ff794498e713d5684feff44e1a7adb57ee993595 (diff) | |
download | node-new-fbd2b597163a687c5485186161891ac54bef441a.tar.gz |
tools: add objectLiteralShorthandProperties to .eslintrc
Required to make linting pass for using object literal
shorthand properties.
PR-URL: https://github.com/nodejs/io.js/pull/1760
Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
Diffstat (limited to '.eslintrc')
-rw-r--r-- | .eslintrc | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -9,6 +9,7 @@ ecmaFeatures: binaryLiterals: true generators: true forOf: true + objectLiteralShorthandProperties: true rules: # Possible Errors |