[eslint config] [base] Fleshing out defaults.

This commit is contained in:
Jordan Harband
2016-07-14 21:40:05 -07:00
parent 385fc9effe
commit 2504e0f85c

View File

@@ -51,7 +51,7 @@ module.exports = {
// specify whether double or single quotes should be used in JSX attributes
// http://eslint.org/docs/rules/jsx-quotes
'jsx-quotes': 0,
'jsx-quotes': [0, 'prefer-double'],
// enforces spacing between keys and values in object literal properties
'key-spacing': [2, { beforeColon: false, afterColon: true }],