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 3942350 commit a3ad878Copy full SHA for a3ad878
lib/rules/jsx-indent-props.js
@@ -176,17 +176,12 @@ module.exports = {
176
nodes.forEach((node) => {
177
const nodeIndent = getNodeIndent(node);
178
if (
179
-<<<<<<< HEAD
180
line.isUsingOperator
181
&& !line.currentOperator
182
&& indentSize !== 'first'
183
&& !ignoreTernaryOperator
184
) {
185
nestedIndent += indentSize;
186
-=======
187
- line.isUsingOperator && !line.currentOperator && indentSize !== 'first' && !ignoreTernaryOperator) {
188
- indent += indentSize;
189
->>>>>>> 60971b66... Improved readability of the checkNodesIndent function within the jsx-indent-props.js file
190
line.isUsingOperator = false;
191
}
192
0 commit comments