We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 682ae68 commit 8b67d43Copy full SHA for 8b67d43
docs/rules/jsx-closing-bracket-location.md
@@ -116,24 +116,24 @@ var x = function() {
116
// 'jsx-closing-bracket-location': [1, 'after-props']
117
<Hello
118
firstName="John"
119
- lastName="Smith"
120
- />;
+ lastName="Smith" />;
121
122
<Say
123
124
125
->
+ lastName="Smith">
126
Hello
127
</Say>;
128
129
// 'jsx-closing-bracket-location': [1, 'props-aligned']
130
131
132
- lastName="Smith" />;
+ lastName="Smith"
+ />;
133
134
135
136
- lastName="Smith">
+>
137
138
139
```
0 commit comments