We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fd2fba1 + 3820096 commit 589113fCopy full SHA for 589113f
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