Skip to content

Commit

Permalink
Allow mixed quotes if it avoids escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
gabegorelick committed Dec 9, 2014
1 parent 9cb65e0 commit 9f0bcd0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .jscs.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
"requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"requireSpaceAfterBinaryOperators": [",", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"validateQuoteMarks": true,
"validateQuoteMarks": { "mark": true, "escape": true },
"validateIndentation": 4,
"disallowTrailingWhitespace": true,
"disallowKeywordsOnNewLine": ["else"],
Expand Down
1 change: 0 additions & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"newcap": true,
"noarg": true,
"node": true,
"quotmark": true,
"trailing": true,
"undef": true,
"unused": true,
Expand Down

0 comments on commit 9f0bcd0

Please sign in to comment.