You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/rules/jsx-quotes.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ var HelloJohn = <Hello name="John" />;
9
9
var HelloJohn =<Hello name='John'/>;
10
10
```
11
11
12
-
The third parameter enables an exception to the rule to avoid escaping quotes. For example, when `"single"` is the standard, this option allows the use of double quotes to avoid escaping single quotes. This option can have the value `"avoid-escape"` and is off by default.
12
+
The third parameter enables an exception to the rule to allow you to use alternative quotes to get around to impossibility to use escaping in JSX attributes. This option can have the value `"avoid-escape"` and is off by default.
0 commit comments