Skip to content

Commit

Permalink
Allow backtick strings to avoid escaping single or double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
feross committed Jul 13, 2016
1 parent ebe08d0 commit fcdb4dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eslintrc.json
Expand Up @@ -126,7 +126,7 @@
"one-var": [2, { "initialized": "never" }],
"operator-linebreak": [2, "after", { "overrides": { "?": "before", ":": "before" } }],
"padded-blocks": [2, "never"],
"quotes": [2, "single", "avoid-escape"],
"quotes": [2, "single", { "avoidEscape": true, "allowTemplateLiterals": true }],
"rest-spread-spacing": [2, "never"],
"semi": [2, "never"],
"semi-spacing": [2, { "before": false, "after": true }],
Expand Down

0 comments on commit fcdb4dd

Please sign in to comment.