fix(base): Enforce quote-props

Object properties should not use quotes unless necessary, in which case all properties of the object

should use quotes.

BREAKING CHANGE: http://eslint.org/docs/rules/quote-props ([2, 'consistent-as-needed'])
This commit is contained in:
Ray Schamp 2016-10-24 10:59:50 -04:00
parent b10b59d7a0
commit 3309002c03

View file

@ -108,9 +108,10 @@ module.exports = {
}],
'one-var': [2, 'never'],
'operator-linebreak': [2, 'after'],
'quote-props': [2, 'consistent-as-needed'],
'quotes': [2, 'single', {
'allowTemplateLiterals': true,
'avoidEscape': true
allowTemplateLiterals: true,
avoidEscape: true
}],
'require-jsdoc': [1],
'semi': [2, 'always'],