We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
jsx-quotes
1 parent 09bf5e8 commit 28476a2Copy full SHA for 28476a2
1 file changed
packages/eslint-config-airbnb/rules/style.js
@@ -26,7 +26,8 @@ module.exports = {
26
// https://github.com/eslint/eslint/blob/master/docs/rules/indent.md
27
'indent': [2, 2, { "SwitchCase": 1, "VariableDeclarator": 1 }],
28
// specify whether double or single quotes should be used in JSX attributes
29
- 'jsx-quotes': 2,
+ // http://eslint.org/docs/rules/jsx-quotes
30
+ 'jsx-quotes': [2, 'prefer-double'],
31
// enforces spacing between keys and values in object literal properties
32
'key-spacing': [2, {'beforeColon': false, 'afterColon': true}],
33
// enforces empty lines around comments
0 commit comments