diff --git a/idea/src/org/jetbrains/kotlin/idea/formatter/TrailingCommaPostFormatProcessor.kt b/idea/src/org/jetbrains/kotlin/idea/formatter/TrailingCommaPostFormatProcessor.kt index a470064cf55..d12b9ddd05b 100644 --- a/idea/src/org/jetbrains/kotlin/idea/formatter/TrailingCommaPostFormatProcessor.kt +++ b/idea/src/org/jetbrains/kotlin/idea/formatter/TrailingCommaPostFormatProcessor.kt @@ -6,20 +6,17 @@ package org.jetbrains.kotlin.idea.formatter import com.intellij.application.options.CodeStyle -import com.intellij.lang.ASTNode import com.intellij.openapi.diagnostic.Logger import com.intellij.openapi.util.TextRange import com.intellij.openapi.util.registry.Registry -import com.intellij.psi.PsiComment -import com.intellij.psi.PsiElement -import com.intellij.psi.PsiFile -import com.intellij.psi.PsiWhiteSpace +import com.intellij.psi.* import com.intellij.psi.codeStyle.CodeStyleManager import com.intellij.psi.codeStyle.CodeStyleSettings import com.intellij.psi.impl.source.PostprocessReformattingAspect import com.intellij.psi.impl.source.codeStyle.PostFormatProcessor import com.intellij.psi.impl.source.codeStyle.PostFormatProcessorHelper import com.intellij.psi.tree.TokenSet +import com.intellij.psi.util.elementType import org.jetbrains.kotlin.config.LanguageFeature import org.jetbrains.kotlin.idea.formatter.TrailingCommaPostFormatProcessor.Companion.findInvalidCommas import org.jetbrains.kotlin.idea.formatter.TrailingCommaPostFormatProcessor.Companion.needComma @@ -33,7 +30,6 @@ import org.jetbrains.kotlin.lexer.KtTokens import org.jetbrains.kotlin.psi.* import org.jetbrains.kotlin.psi.psiUtil.* import org.jetbrains.kotlin.utils.addToStdlib.cast -import org.jetbrains.kotlin.utils.addToStdlib.safeAs class TrailingCommaPostFormatProcessor : PostFormatProcessor { override fun processElement(source: PsiElement, settings: CodeStyleSettings): PsiElement = @@ -53,7 +49,7 @@ class TrailingCommaPostFormatProcessor : PostFormatProcessor { fun needComma( commaOwner: KtElement, settings: CodeStyleSettings = CodeStyle.getSettings(commaOwner.project), - checkExistingTrailingComma: Boolean = true + checkExistingTrailingComma: Boolean = true, ): Boolean = when { commaOwner is KtWhenEntry -> commaOwner.needTrailingComma(settings, checkExistingTrailingComma) @@ -71,23 +67,45 @@ class TrailingCommaPostFormatProcessor : PostFormatProcessor { fun trailingCommaOrLastElement(commaOwner: KtElement): PsiElement? { val lastChild = commaOwner.lastSignificantChild ?: return null - val withSelf = when (lastChild.safeAs()?.elementType) { + val withSelf = when (lastChild.elementType) { KtTokens.COMMA -> return lastChild in RIGHT_BARRIERS -> false else -> true } return lastChild.getPrevSiblingIgnoringWhitespaceAndComments(withSelf)?.takeIf { - it.safeAs()?.elementType !in LEFT_BARRIERS - } + it.elementType !in LEFT_BARRIERS + }?.takeIfIsNotError() } fun trailingCommaAllowedInModule(source: PsiElement): Boolean = Registry.`is`("kotlin.formatter.allowTrailingCommaInAnyProject", false) || source.module?.languageVersionSettings?.supportsFeature(LanguageFeature.TrailingCommas) == true + + fun elementBeforeFirstElement(commaOwner: KtElement): PsiElement? = when (commaOwner) { + is KtParameterList -> { + val parent = commaOwner.parent + if (parent is KtFunctionLiteral) parent.lBrace else commaOwner.leftParenthesis + } + is KtWhenEntry -> commaOwner.parent.cast().openBrace + is KtDestructuringDeclaration -> commaOwner.lPar + else -> commaOwner.firstChild?.takeIfIsNotError() + } + + fun elementAfterLastElement(commaOwner: KtElement): PsiElement? = when (commaOwner) { + is KtParameterList -> { + val parent = commaOwner.parent + if (parent is KtFunctionLiteral) parent.arrow else commaOwner.rightParenthesis + } + is KtWhenEntry -> commaOwner.arrow + is KtDestructuringDeclaration -> commaOwner.rPar + else -> commaOwner.lastChild?.takeIfIsNotError() + } } } +private fun PsiElement.takeIfIsNotError(): PsiElement? = takeIf { it !is PsiErrorElement } + private class TrailingCommaPostFormatVisitor(val settings: CodeStyleSettings) : TrailingCommaVisitor() { private val myPostProcessor = PostFormatProcessorHelper(settings.kotlinCommonSettings) @@ -103,7 +121,7 @@ private class TrailingCommaPostFormatVisitor(val settings: CodeStyleSettings) : private fun processCommaOwner(parent: KtElement) { val lastElement = trailingCommaOrLastElement(parent) ?: return - val elementType = lastElement.safeAs()?.elementType + val elementType = lastElement.elementType when { needComma(parent, settings, false) -> { // add a missing comma @@ -152,7 +170,7 @@ private class TrailingCommaPostFormatVisitor(val settings: CodeStyleSettings) : fun processText( source: PsiFile, - rangeToReformat: TextRange + rangeToReformat: TextRange, ): TextRange { myPostProcessor.resultTextRange = rangeToReformat source.accept(this) @@ -203,4 +221,4 @@ fun PsiElement.leaf(forward: Boolean = true, filter: (PsiElement) -> Boolean): P if (forward) nextLeaf(filter) else prevLeaf(filter) -val PsiElement.isComma: Boolean get() = safeAs()?.elementType === KtTokens.COMMA +val PsiElement.isComma: Boolean get() = elementType === KtTokens.COMMA \ No newline at end of file diff --git a/idea/src/org/jetbrains/kotlin/idea/inspections/TrailingCommaInspection.kt b/idea/src/org/jetbrains/kotlin/idea/inspections/TrailingCommaInspection.kt index ced34efd64d..2f5e41c3a94 100644 --- a/idea/src/org/jetbrains/kotlin/idea/inspections/TrailingCommaInspection.kt +++ b/idea/src/org/jetbrains/kotlin/idea/inspections/TrailingCommaInspection.kt @@ -13,6 +13,7 @@ import com.intellij.openapi.application.ApplicationManager import com.intellij.openapi.util.TextRange import com.intellij.psi.PsiElement import com.intellij.psi.PsiElementVisitor +import org.jetbrains.kotlin.idea.formatter.TrailingCommaPostFormatProcessor import org.jetbrains.kotlin.idea.formatter.TrailingCommaPostFormatProcessor.Companion.findInvalidCommas import org.jetbrains.kotlin.idea.formatter.TrailingCommaPostFormatProcessor.Companion.needComma import org.jetbrains.kotlin.idea.formatter.TrailingCommaPostFormatProcessor.Companion.trailingCommaAllowedInModule @@ -21,9 +22,11 @@ import org.jetbrains.kotlin.idea.formatter.TrailingCommaVisitor import org.jetbrains.kotlin.idea.formatter.isComma import org.jetbrains.kotlin.idea.formatter.leafIgnoringWhitespaceAndComments import org.jetbrains.kotlin.idea.quickfix.ReformatQuickFix +import org.jetbrains.kotlin.idea.util.isLineBreak import org.jetbrains.kotlin.psi.KtElement import org.jetbrains.kotlin.psi.psiUtil.endOffset import org.jetbrains.kotlin.psi.psiUtil.nextLeaf +import org.jetbrains.kotlin.psi.psiUtil.prevLeaf import org.jetbrains.kotlin.psi.psiUtil.startOffset import javax.swing.JComponent @@ -38,10 +41,37 @@ class TrailingCommaInspection( val action = TrailingCommaAction.create(commaOwner) if (action != TrailingCommaAction.REMOVE) { checkCommaPosition(commaOwner) + checkLineBreaks(commaOwner) } checkTrailingComma(commaOwner, action) } + private fun checkLineBreaks(commaOwner: KtElement) { + val first = TrailingCommaPostFormatProcessor.elementBeforeFirstElement(commaOwner) + if (first?.nextLeaf(true)?.isLineBreak() == false) { + first.nextSibling?.let { + registerProblemForLineBreak( + commaOwner, + it, + if (ApplicationManager.getApplication().isUnitTestMode) + ProblemHighlightType.GENERIC_ERROR_OR_WARNING + else + ProblemHighlightType.INFORMATION, + ) + } + + } + + val last = TrailingCommaPostFormatProcessor.elementAfterLastElement(commaOwner) + if (last?.prevLeaf(true)?.isLineBreak() == false) { + registerProblemForLineBreak( + commaOwner, + last, + ProblemHighlightType.GENERIC_ERROR_OR_WARNING, + ) + } + } + private fun checkCommaPosition(commaOwner: KtElement) { for (invalidComma in findInvalidCommas(commaOwner)) { reportProblem(invalidComma, "Comma loses the advantages in this position", "Fix comma position") @@ -85,10 +115,25 @@ class TrailingCommaInspection( ) } + private fun registerProblemForLineBreak( + commaOwner: KtElement, + elementForTextRange: PsiElement, + highlightType: ProblemHighlightType, + ) { + val problemElement = commaOwner.parent + holder.registerProblem( + problemElement, + "Missing line break", + highlightType, + TextRange.from(elementForTextRange.startOffset, 1).shiftLeft(problemElement.startOffset), + ReformatQuickFix("Add line break", commaOwner), + ) + } + private val PsiElement.textRangeOfCommaOrSymbolAfter: TextRange get() { val textRange = textRange - if (textRange.length <= 1) return textRange + if (isComma) return textRange val resultRange = nextLeaf()?.leafIgnoringWhitespaceAndComments(false)?.endOffset?.takeIf { it > 0 }?.let { TextRange.create(it - 1, it).intersection(parent.textRange) diff --git a/idea/testData/inspections/trailingCommaOffWithCodeStyle/inspectionData/expected.xml b/idea/testData/inspections/trailingCommaOffWithCodeStyle/inspectionData/expected.xml index 7ab32f2f196..06f33db6376 100644 --- a/idea/testData/inspections/trailingCommaOffWithCodeStyle/inspectionData/expected.xml +++ b/idea/testData/inspections/trailingCommaOffWithCodeStyle/inspectionData/expected.xml @@ -1,4 +1,76 @@ + + ArgumentList.kt + 2 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 3 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 19 + 1 + + + ArgumentList.kt + 9 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 20 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + ArgumentList.kt 26 @@ -7,6 +79,9 @@ Trailing comma recommendations Useless trailing comma + , + 19 + 1 ArgumentList.kt @@ -16,6 +91,9 @@ Trailing comma recommendations Useless trailing comma + , + 56 + 1 ArgumentList.kt @@ -25,6 +103,9 @@ Trailing comma recommendations Useless trailing comma + , + 45 + 1 ArgumentList.kt @@ -34,6 +115,33 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 + + + ArgumentList.kt + 38 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + ArgumentList.kt + 42 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 ArgumentList.kt @@ -43,6 +151,57 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 + + + ArgumentList.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + C + 16 + 1 + + + ArgumentList.kt + 56 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 43 + 1 + + + ArgumentList.kt + 60 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + ArgumentList.kt + 64 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 ArgumentList.kt @@ -52,6 +211,57 @@ Trailing comma recommendations Useless trailing comma + , + 42 + 1 + + + ArgumentList.kt + 70 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + { + 16 + 1 + + + ArgumentList.kt + 78 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 34 + 1 + + + ArgumentList.kt + 82 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + ArgumentList.kt + 86 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 ArgumentList.kt @@ -61,6 +271,81 @@ Trailing comma recommendations Useless trailing comma + , + 48 + 1 + + + ArgumentList.kt + 92 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 16 + 1 + + + ArgumentList.kt + 100 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 40 + 1 + + + ArgumentList.kt + 104 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + ArgumentList.kt + 108 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ArgumentList.kt + 110 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + ArgumentList.kt + 112 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 ArgumentList.kt @@ -70,6 +355,33 @@ Trailing comma recommendations Useless trailing comma + , + 90 + 1 + + + ArgumentList.kt + 118 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + o + 16 + 1 + + + ArgumentList.kt + 126 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 82 + 1 ArgumentList.kt @@ -79,6 +391,105 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 6 + 1 + + + ArgumentList.kt + 134 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + / + 13 + 1 + + + ArgumentList.kt + 138 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 19 + 1 + + + ArgumentList.kt + 140 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 141 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 6 + 1 + + + ArgumentList.kt + 143 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 146 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 152 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 155 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 13 + 1 ArgumentList.kt @@ -88,6 +499,9 @@ Trailing comma recommendations Useless trailing comma + , + 19 + 1 ArgumentList.kt @@ -97,6 +511,45 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 8 + 1 + + + ArgumentList.kt + 161 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 165 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 168 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 13 + 1 ArgumentList.kt @@ -106,6 +559,33 @@ Trailing comma recommendations Useless trailing comma + , + 19 + 1 + + + ArgumentList.kt + 174 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 175 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 34 + 1 ArgumentList.kt @@ -115,6 +595,9 @@ Trailing comma recommendations Useless trailing comma + , + 45 + 1 ArgumentList.kt @@ -124,6 +607,9 @@ Trailing comma recommendations Useless trailing comma + , + 45 + 1 ArgumentList.kt @@ -133,6 +619,9 @@ Trailing comma recommendations Useless trailing comma + , + 45 + 1 ArgumentList.kt @@ -142,6 +631,33 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 7 + 1 + + + ArgumentList.kt + 181 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 182 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 ArgumentList.kt @@ -151,6 +667,9 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 ArgumentList.kt @@ -160,6 +679,249 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 + + + ArgumentList.kt + 186 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 187 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 12 + 1 + + + ArgumentList.kt + 189 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + ArgumentList.kt + 193 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ArgumentList.kt + 195 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + C + 16 + 1 + + + ArgumentList.kt + 198 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + o + 16 + 1 + + + ArgumentList.kt + 199 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 6 + 1 + + + ArgumentList.kt + 201 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 16 + 1 + + + ArgumentList.kt + 202 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 6 + 1 + + + ArgumentList.kt + 204 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + { + 16 + 1 + + + ArgumentList.kt + 205 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 33 + 1 + + + ArgumentList.kt + 207 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + C + 16 + 1 + + + ArgumentList.kt + 208 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + ArgumentList.kt + 211 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 15 + 1 + + + ArgumentList.kt + 210 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + t + 30 + 1 + + + ArgumentList.kt + 211 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 16 + 1 + + + ArgumentList.kt + 210 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 211 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 25 + 1 + + + ArgumentList.kt + 213 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 214 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 ArgumentList.kt @@ -169,6 +931,9 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 10 + 1 ArgumentList.kt @@ -178,60 +943,9 @@ Trailing comma recommendations Comma loses the advantages in this position - - - CollectionLiteralInAnnotation.kt - 4 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - CollectionLiteralInAnnotation.kt - 22 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - CollectionLiteralInAnnotation.kt - 40 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - CollectionLiteralInAnnotation.kt - 70 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - CollectionLiteralInAnnotation.kt - 80 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - CollectionLiteralInAnnotation.kt - 84 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position + , + 10 + 1 DestructionDeclarationsInLambda.kt @@ -241,6 +955,9 @@ Trailing comma recommendations Useless trailing comma + , + 46 + 1 DestructionDeclarationsInLambda.kt @@ -250,6 +967,9 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 DestructionDeclarationsInLambda.kt @@ -259,6 +979,93 @@ Trailing comma recommendations Useless trailing comma + , + 50 + 1 + + + DestructionDeclarationsInLambda.kt + 9 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 42 + 1 + + + DestructionDeclarationsInLambda.kt + 10 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 46 + 1 + + + DestructionDeclarationsInLambda.kt + 9 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 10 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 52 + 1 + + + DestructionDeclarationsInLambda.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 46 + 1 + + + DestructionDeclarationsInLambda.kt + 14 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 52 + 1 DestructionDeclarationsInLambda.kt @@ -268,6 +1075,45 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 45 + 1 + + + DestructionDeclarationsInLambda.kt + 22 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 48 + 1 + + + DestructionDeclarationsInLambda.kt + 20 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 22 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 54 + 1 DestructionDeclarationsInLambda.kt @@ -277,6 +1123,57 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 3 + 1 + + + DestructionDeclarationsInLambda.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 42 + 1 + + + DestructionDeclarationsInLambda.kt + 28 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 4 + 1 + + + DestructionDeclarationsInLambda.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 28 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 10 + 1 DestructionDeclarationsInLambda.kt @@ -286,6 +1183,9 @@ Trailing comma recommendations Useless trailing comma + , + 50 + 1 DestructionDeclarationsInLambda.kt @@ -295,6 +1195,57 @@ Trailing comma recommendations Useless trailing comma + , + 54 + 1 + + + DestructionDeclarationsInLambda.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 42 + 1 + + + DestructionDeclarationsInLambda.kt + 41 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 2 + 1 + + + DestructionDeclarationsInLambda.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 41 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 DestructionDeclarationsInLambda.kt @@ -304,6 +1255,57 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 2 + 1 + + + DestructionDeclarationsInLambda.kt + 45 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + / + 42 + 1 + + + DestructionDeclarationsInLambda.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 2 + 1 + + + DestructionDeclarationsInLambda.kt + 45 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 DestructionDeclarationsInLambda.kt @@ -313,6 +1315,45 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 2 + 1 + + + DestructionDeclarationsInLambda.kt + 53 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + / + 9 + 1 + + + DestructionDeclarationsInLambda.kt + 56 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 2 + 1 + + + DestructionDeclarationsInLambda.kt + 57 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 11 + 1 DestructionDeclarationsInLambda.kt @@ -322,537 +1363,45 @@ Trailing comma recommendations Useless trailing comma + , + 46 + 1 - IndicesAccess.kt - 26 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 33 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 35 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 47 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 72 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 91 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 95 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 110 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - IndicesAccess.kt - 138 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 141 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - IndicesAccess.kt - 151 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 156 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 158 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 160 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 161 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - IndicesAccess.kt - 163 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 165 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - LambdaParameterList.kt - 81 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - LambdaParameterList.kt - 160 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - LambdaParameterList.kt - 175 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - LambdaValueParameters.kt - 20 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - LambdaValueParameters.kt - 33 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - LambdaValueParameters.kt + DestructionDeclarationsInLambda.kt 61 testProject light_idea_test_case - + Trailing comma recommendations - Comma loses the advantages in this position + Missing line break + + 40 + 1 - LambdaValueParameters.kt - 70 + DestructionDeclarationsInLambda.kt + 62 testProject light_idea_test_case - + Trailing comma recommendations - Useless trailing comma + Missing line break + - + 44 + 1 - MultiVariableDeclaration.kt - 12 + WhenEntry.kt + 15 testProject light_idea_test_case - + Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 14 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 25 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 61 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 63 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 65 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 68 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 97 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - ParameterList.kt - 118 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - ParameterList.kt - 298 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - ParameterList.kt - 302 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - ParameterList.kt - 438 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - ParameterList.kt - 449 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeArgumentList.kt - 34 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 38 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 43 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 45 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 50 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeArgumentList.kt - 78 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 81 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeArgumentList.kt - 91 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 102 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 104 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 106 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 107 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeArgumentList.kt - 109 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 111 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeParameterList.kt - 187 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeParameterList.kt - 207 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 218 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 240 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 240 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 247 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 252 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 257 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position + Missing line break + - + 44 + 1 WhenEntry.kt @@ -862,6 +1411,21 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 43 + 1 + + + WhenEntry.kt + 21 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 45 + 1 WhenEntry.kt @@ -871,5 +1435,3680 @@ Trailing comma recommendations Useless trailing comma + , + 9 + 1 + + + WhenEntry.kt + 54 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 15 + 1 + + + WhenEntry.kt + 62 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 15 + 1 + + + LambdaValueParameters.kt + 20 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 76 + 1 + + + LambdaValueParameters.kt + 24 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + y + 12 + 1 + + + LambdaValueParameters.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + LambdaValueParameters.kt + 37 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + y + 12 + 1 + + + LambdaValueParameters.kt + 43 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 41 + 1 + + + LambdaValueParameters.kt + 54 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + y + 12 + 1 + + + LambdaValueParameters.kt + 61 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + LambdaValueParameters.kt + 60 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + y + 12 + 1 + + + LambdaValueParameters.kt + 62 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 6 + 1 + + + LambdaValueParameters.kt + 70 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 49 + 1 + + + LambdaValueParameters.kt + 74 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + y + 12 + 1 + + + LambdaValueParameters.kt + 79 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 12 + 1 + + + LambdaValueParameters.kt + 80 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 43 + 1 + + + ParameterList.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 46 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + ParameterList.kt + 92 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 108 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + ParameterList.kt + 118 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 25 + 1 + + + ParameterList.kt + 135 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 145 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + ParameterList.kt + 157 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 29 + 1 + + + ParameterList.kt + 171 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 28 + 1 + + + ParameterList.kt + 189 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 194 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 211 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 217 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 228 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 232 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 249 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 21 + 1 + + + ParameterList.kt + 255 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 260 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 298 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 30 + 1 + + + ParameterList.kt + 302 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 52 + 1 + + + ParameterList.kt + 334 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 17 + 1 + + + ParameterList.kt + 337 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 17 + 1 + + + ParameterList.kt + 338 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 352 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + ParameterList.kt + 357 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 374 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + ParameterList.kt + 380 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 391 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + ParameterList.kt + 395 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 410 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 7 + 1 + + + ParameterList.kt + 412 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 20 + 1 + + + ParameterList.kt + 418 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 438 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 14 + 1 + + + ParameterList.kt + 444 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 21 + 1 + + + ParameterList.kt + 449 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + ParameterList.kt + 449 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 454 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + MultiVariableDeclaration.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 13 + 1 + + + MultiVariableDeclaration.kt + 14 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 10 + 1 + + + MultiVariableDeclaration.kt + 17 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 21 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 25 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 10 + 1 + + + MultiVariableDeclaration.kt + 28 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 10 + 1 + + + MultiVariableDeclaration.kt + 30 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 34 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + MultiVariableDeclaration.kt + 44 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 61 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 17 + 1 + + + MultiVariableDeclaration.kt + 63 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 21 + 1 + + + MultiVariableDeclaration.kt + 65 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 14 + 1 + + + MultiVariableDeclaration.kt + 68 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 10 + 1 + + + MultiVariableDeclaration.kt + 70 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 73 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 76 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 79 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 80 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 17 + 1 + + + MultiVariableDeclaration.kt + 84 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + MultiVariableDeclaration.kt + 90 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 93 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 10 + 1 + + + MultiVariableDeclaration.kt + 97 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 12 + 1 + + + MultiVariableDeclaration.kt + 95 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + CollectionLiteralInAnnotation.kt + 4 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 8 + 1 + + + CollectionLiteralInAnnotation.kt + 7 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 7 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 8 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 13 + 1 + + + CollectionLiteralInAnnotation.kt + 11 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + CollectionLiteralInAnnotation.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 12 + 1 + + + CollectionLiteralInAnnotation.kt + 15 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 13 + 1 + + + CollectionLiteralInAnnotation.kt + 22 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 11 + 1 + + + CollectionLiteralInAnnotation.kt + 25 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 25 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 30 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 16 + 1 + + + CollectionLiteralInAnnotation.kt + 29 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 30 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 17 + 1 + + + CollectionLiteralInAnnotation.kt + 34 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 15 + 1 + + + CollectionLiteralInAnnotation.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 34 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 16 + 1 + + + CollectionLiteralInAnnotation.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 14 + 1 + + + CollectionLiteralInAnnotation.kt + 43 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 43 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 44 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 13 + 1 + + + CollectionLiteralInAnnotation.kt + 47 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + CollectionLiteralInAnnotation.kt + 52 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 20 + 1 + + + CollectionLiteralInAnnotation.kt + 51 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 52 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 21 + 1 + + + CollectionLiteralInAnnotation.kt + 55 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 56 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 55 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 56 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 59 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 59 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 60 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 63 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 63 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 64 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 70 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 67 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + / + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 71 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 67 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 71 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + CollectionLiteralInAnnotation.kt + 76 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 10 + 1 + + + CollectionLiteralInAnnotation.kt + 74 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 76 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 11 + 1 + + + CollectionLiteralInAnnotation.kt + 80 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 79 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 80 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 8 + 1 + + + CollectionLiteralInAnnotation.kt + 79 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 80 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + CollectionLiteralInAnnotation.kt + 84 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 83 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 85 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 83 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 85 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 88 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + / + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 88 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 90 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 93 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 93 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 94 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 98 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 13 + 1 + + + CollectionLiteralInAnnotation.kt + 97 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 98 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + CollectionLiteralInAnnotation.kt + 103 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 101 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 103 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + LambdaParameterList.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 9 + 1 + + + LambdaParameterList.kt + 13 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + LambdaParameterList.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 38 + 1 + + + LambdaParameterList.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 5 + 1 + + + LambdaParameterList.kt + 56 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 14 + 1 + + + LambdaParameterList.kt + 64 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 5 + 1 + + + LambdaParameterList.kt + 81 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 13 + 1 + + + LambdaParameterList.kt + 87 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 5 + 1 + + + LambdaParameterList.kt + 108 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 17 + 1 + + + LambdaParameterList.kt + 115 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + LambdaParameterList.kt + 122 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + LambdaParameterList.kt + 139 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 9 + 1 + + + LambdaParameterList.kt + 160 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 9 + 1 + + + LambdaParameterList.kt + 168 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 17 + 1 + + + LambdaParameterList.kt + 175 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + LambdaParameterList.kt + 175 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + LambdaParameterList.kt + 182 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + TypeParameterList.kt + 8 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 9 + 1 + + + TypeParameterList.kt + 9 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 18 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 23 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 46 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 57 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 61 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 78 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 17 + 1 + + + TypeParameterList.kt + 84 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 89 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 100 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 5 + 1 + + + TypeParameterList.kt + 104 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 5 + 1 + + + TypeParameterList.kt + 110 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 115 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 132 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 138 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 149 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 153 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 168 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 5 + 1 + + + TypeParameterList.kt + 170 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 20 + 1 + + + TypeParameterList.kt + 176 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 187 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 6 + 1 + + + TypeParameterList.kt + 192 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 9 + 1 + + + TypeParameterList.kt + 207 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 9 + 1 + + + TypeParameterList.kt + 213 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 17 + 1 + + + TypeParameterList.kt + 218 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + TypeParameterList.kt + 218 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 223 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 240 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 9 + 1 + + + TypeParameterList.kt + 240 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 31 + 1 + + + TypeParameterList.kt + 247 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 8 + 1 + + + TypeParameterList.kt + 247 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 9 + 1 + + + TypeParameterList.kt + 252 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + TypeParameterList.kt + 252 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 12 + 1 + + + TypeParameterList.kt + 257 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + TypeParameterList.kt + 257 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeArgumentList.kt + 3 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + t + 22 + 1 + + + TypeArgumentList.kt + 2 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 10 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 11 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 24 + 1 + + + TypeArgumentList.kt + 17 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 20 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 24 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 28 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeArgumentList.kt + 34 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + TypeArgumentList.kt + 38 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 56 + 1 + + + TypeArgumentList.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 41 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 13 + 1 + + + TypeArgumentList.kt + 43 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + TypeArgumentList.kt + 45 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 48 + 1 + + + TypeArgumentList.kt + 50 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + TypeArgumentList.kt + 53 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + / + 13 + 1 + + + TypeArgumentList.kt + 57 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 17 + 1 + + + TypeArgumentList.kt + 59 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 60 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 6 + 1 + + + TypeArgumentList.kt + 62 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 65 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 71 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 74 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 13 + 1 + + + TypeArgumentList.kt + 78 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + TypeArgumentList.kt + 81 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 8 + 1 + + + TypeArgumentList.kt + 80 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 84 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 87 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 13 + 1 + + + TypeArgumentList.kt + 91 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + TypeArgumentList.kt + 93 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 94 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 6 + 1 + + + TypeArgumentList.kt + 97 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 23 + 1 + + + TypeArgumentList.kt + 99 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 100 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 34 + 1 + + + TypeArgumentList.kt + 102 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + TypeArgumentList.kt + 104 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + TypeArgumentList.kt + 106 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + TypeArgumentList.kt + 107 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 7 + 1 + + + TypeArgumentList.kt + 106 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 107 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeArgumentList.kt + 109 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + TypeArgumentList.kt + 111 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + TypeArgumentList.kt + 111 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 112 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 12 + 1 + + + IndicesAccess.kt + 2 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 3 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 24 + 1 + + + IndicesAccess.kt + 9 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 20 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 14 + 1 + + + IndicesAccess.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + IndicesAccess.kt + 30 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 31 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 39 + 1 + + + IndicesAccess.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + IndicesAccess.kt + 35 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + IndicesAccess.kt + 39 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + IndicesAccess.kt + 43 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 5 + 1 + + + IndicesAccess.kt + 47 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + IndicesAccess.kt + 49 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + C + 16 + 1 + + + IndicesAccess.kt + 50 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 33 + 1 + + + IndicesAccess.kt + 52 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + C + 16 + 1 + + + IndicesAccess.kt + 60 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 43 + 1 + + + IndicesAccess.kt + 64 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + IndicesAccess.kt + 68 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 17 + 1 + + + IndicesAccess.kt + 72 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 42 + 1 + + + IndicesAccess.kt + 74 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + { + 16 + 1 + + + IndicesAccess.kt + 75 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 13 + 1 + + + IndicesAccess.kt + 77 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + { + 16 + 1 + + + IndicesAccess.kt + 81 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 34 + 1 + + + IndicesAccess.kt + 85 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + IndicesAccess.kt + 89 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 5 + 1 + + + IndicesAccess.kt + 91 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 107 + 1 + + + IndicesAccess.kt + 95 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 90 + 1 + + + IndicesAccess.kt + 97 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + o + 16 + 1 + + + IndicesAccess.kt + 105 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 82 + 1 + + + IndicesAccess.kt + 110 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + IndicesAccess.kt + 113 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + / + 13 + 1 + + + IndicesAccess.kt + 117 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 17 + 1 + + + IndicesAccess.kt + 119 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 120 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 6 + 1 + + + IndicesAccess.kt + 122 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 125 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 131 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 134 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 13 + 1 + + + IndicesAccess.kt + 138 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + IndicesAccess.kt + 141 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 8 + 1 + + + IndicesAccess.kt + 140 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 144 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 147 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 13 + 1 + + + IndicesAccess.kt + 151 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + IndicesAccess.kt + 153 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 154 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 34 + 1 + + + IndicesAccess.kt + 156 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + IndicesAccess.kt + 158 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + IndicesAccess.kt + 160 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + IndicesAccess.kt + 161 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 7 + 1 + + + IndicesAccess.kt + 160 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 161 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 14 + 1 + + + IndicesAccess.kt + 163 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + IndicesAccess.kt + 165 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + IndicesAccess.kt + 165 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 166 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 12 + 1 + + + IndicesAccess.kt + 168 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + IndicesAccess.kt + 172 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 5 + 1 + + + IndicesAccess.kt + 174 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + C + 16 + 1 \ No newline at end of file diff --git a/idea/testData/inspections/trailingCommaOffWithoutCodeStyle/inspectionData/expected.xml b/idea/testData/inspections/trailingCommaOffWithoutCodeStyle/inspectionData/expected.xml index c42c3e1ddad..6fd774dbbd0 100644 --- a/idea/testData/inspections/trailingCommaOffWithoutCodeStyle/inspectionData/expected.xml +++ b/idea/testData/inspections/trailingCommaOffWithoutCodeStyle/inspectionData/expected.xml @@ -7,6 +7,9 @@ Trailing comma recommendations Useless trailing comma + , + 19 + 1 ArgumentList.kt @@ -16,6 +19,9 @@ Trailing comma recommendations Useless trailing comma + , + 56 + 1 ArgumentList.kt @@ -25,6 +31,9 @@ Trailing comma recommendations Useless trailing comma + , + 45 + 1 ArgumentList.kt @@ -34,6 +43,9 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 ArgumentList.kt @@ -43,6 +55,9 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 ArgumentList.kt @@ -52,6 +67,9 @@ Trailing comma recommendations Useless trailing comma + , + 42 + 1 ArgumentList.kt @@ -61,6 +79,9 @@ Trailing comma recommendations Useless trailing comma + , + 48 + 1 ArgumentList.kt @@ -70,6 +91,9 @@ Trailing comma recommendations Useless trailing comma + , + 90 + 1 ArgumentList.kt @@ -79,6 +103,9 @@ Trailing comma recommendations Useless trailing comma + , + 19 + 1 ArgumentList.kt @@ -88,6 +115,33 @@ Trailing comma recommendations Useless trailing comma + , + 19 + 1 + + + ArgumentList.kt + 174 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 175 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 34 + 1 ArgumentList.kt @@ -97,6 +151,9 @@ Trailing comma recommendations Useless trailing comma + , + 45 + 1 ArgumentList.kt @@ -106,6 +163,9 @@ Trailing comma recommendations Useless trailing comma + , + 45 + 1 ArgumentList.kt @@ -115,6 +175,9 @@ Trailing comma recommendations Useless trailing comma + , + 45 + 1 ArgumentList.kt @@ -124,6 +187,9 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 ArgumentList.kt @@ -133,6 +199,141 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 + + + ArgumentList.kt + 198 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + o + 16 + 1 + + + ArgumentList.kt + 199 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 6 + 1 + + + ArgumentList.kt + 201 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 16 + 1 + + + ArgumentList.kt + 202 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 6 + 1 + + + ArgumentList.kt + 204 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + { + 16 + 1 + + + ArgumentList.kt + 205 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 33 + 1 + + + ArgumentList.kt + 207 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + C + 16 + 1 + + + ArgumentList.kt + 208 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + ArgumentList.kt + 211 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 15 + 1 + + + ArgumentList.kt + 213 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 214 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 ArgumentList.kt @@ -142,6 +343,9 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 10 + 1 ArgumentList.kt @@ -151,51 +355,9 @@ Trailing comma recommendations Comma loses the advantages in this position - - - CollectionLiteralInAnnotation.kt - 4 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - CollectionLiteralInAnnotation.kt - 22 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - CollectionLiteralInAnnotation.kt - 40 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - CollectionLiteralInAnnotation.kt - 70 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - CollectionLiteralInAnnotation.kt - 84 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position + , + 10 + 1 DestructionDeclarationsInLambda.kt @@ -205,6 +367,9 @@ Trailing comma recommendations Useless trailing comma + , + 46 + 1 DestructionDeclarationsInLambda.kt @@ -214,6 +379,9 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 DestructionDeclarationsInLambda.kt @@ -223,6 +391,57 @@ Trailing comma recommendations Useless trailing comma + , + 50 + 1 + + + DestructionDeclarationsInLambda.kt + 9 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 10 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 52 + 1 + + + DestructionDeclarationsInLambda.kt + 14 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 52 + 1 DestructionDeclarationsInLambda.kt @@ -232,6 +451,45 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 45 + 1 + + + DestructionDeclarationsInLambda.kt + 22 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 48 + 1 + + + DestructionDeclarationsInLambda.kt + 20 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 22 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 54 + 1 DestructionDeclarationsInLambda.kt @@ -241,6 +499,57 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 3 + 1 + + + DestructionDeclarationsInLambda.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 42 + 1 + + + DestructionDeclarationsInLambda.kt + 28 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 4 + 1 + + + DestructionDeclarationsInLambda.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 28 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 10 + 1 DestructionDeclarationsInLambda.kt @@ -250,6 +559,9 @@ Trailing comma recommendations Useless trailing comma + , + 50 + 1 DestructionDeclarationsInLambda.kt @@ -259,6 +571,69 @@ Trailing comma recommendations Useless trailing comma + , + 54 + 1 + + + DestructionDeclarationsInLambda.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 41 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + DestructionDeclarationsInLambda.kt + 45 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + DestructionDeclarationsInLambda.kt + 57 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 11 + 1 DestructionDeclarationsInLambda.kt @@ -268,456 +643,33 @@ Trailing comma recommendations Useless trailing comma + , + 46 + 1 - IndicesAccess.kt - 26 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 33 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 35 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 47 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 72 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 91 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 95 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 138 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 151 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 156 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 158 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 160 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 163 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 165 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - LambdaParameterList.kt - 81 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - LambdaParameterList.kt - 175 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - LambdaValueParameters.kt - 20 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - LambdaValueParameters.kt - 33 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - LambdaValueParameters.kt + DestructionDeclarationsInLambda.kt 61 testProject light_idea_test_case - + Trailing comma recommendations - Comma loses the advantages in this position + Missing line break + + 40 + 1 - LambdaValueParameters.kt - 70 + DestructionDeclarationsInLambda.kt + 62 testProject light_idea_test_case - + Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 12 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 14 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 25 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 61 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 63 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 65 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 68 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 97 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - ParameterList.kt - 118 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - ParameterList.kt - 298 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - ParameterList.kt - 302 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - ParameterList.kt - 449 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeArgumentList.kt - 34 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 38 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 43 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 45 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 78 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 91 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 102 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 104 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 106 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 109 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 111 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeParameterList.kt - 187 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeParameterList.kt - 218 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 240 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 240 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 247 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 252 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 257 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position + Missing line break + - + 44 + 1 WhenEntry.kt @@ -727,6 +679,21 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 43 + 1 + + + WhenEntry.kt + 21 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 45 + 1 WhenEntry.kt @@ -736,5 +703,1880 @@ Trailing comma recommendations Useless trailing comma + , + 9 + 1 + + + LambdaValueParameters.kt + 20 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 76 + 1 + + + LambdaValueParameters.kt + 24 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + y + 12 + 1 + + + LambdaValueParameters.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + LambdaValueParameters.kt + 61 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + LambdaValueParameters.kt + 60 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + y + 12 + 1 + + + LambdaValueParameters.kt + 62 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 6 + 1 + + + LambdaValueParameters.kt + 70 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 49 + 1 + + + ParameterList.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 46 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + ParameterList.kt + 92 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 108 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + ParameterList.kt + 118 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 25 + 1 + + + ParameterList.kt + 135 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 145 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + ParameterList.kt + 157 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 29 + 1 + + + ParameterList.kt + 189 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 194 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 211 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 217 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 228 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 232 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 249 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 21 + 1 + + + ParameterList.kt + 255 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 260 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 298 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 30 + 1 + + + ParameterList.kt + 302 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 52 + 1 + + + ParameterList.kt + 334 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 17 + 1 + + + ParameterList.kt + 337 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 17 + 1 + + + ParameterList.kt + 338 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 352 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + ParameterList.kt + 357 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 374 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + ParameterList.kt + 380 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 391 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + ParameterList.kt + 395 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 410 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 7 + 1 + + + ParameterList.kt + 412 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 20 + 1 + + + ParameterList.kt + 418 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 444 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 21 + 1 + + + ParameterList.kt + 449 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + ParameterList.kt + 449 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 454 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + MultiVariableDeclaration.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 13 + 1 + + + MultiVariableDeclaration.kt + 14 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 10 + 1 + + + MultiVariableDeclaration.kt + 17 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 25 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 10 + 1 + + + MultiVariableDeclaration.kt + 28 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 10 + 1 + + + MultiVariableDeclaration.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 61 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 17 + 1 + + + MultiVariableDeclaration.kt + 63 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 21 + 1 + + + MultiVariableDeclaration.kt + 65 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 14 + 1 + + + MultiVariableDeclaration.kt + 68 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 10 + 1 + + + MultiVariableDeclaration.kt + 97 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 12 + 1 + + + MultiVariableDeclaration.kt + 95 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + CollectionLiteralInAnnotation.kt + 4 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 8 + 1 + + + CollectionLiteralInAnnotation.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 13 + 1 + + + CollectionLiteralInAnnotation.kt + 22 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 11 + 1 + + + CollectionLiteralInAnnotation.kt + 30 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 16 + 1 + + + CollectionLiteralInAnnotation.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 14 + 1 + + + CollectionLiteralInAnnotation.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 13 + 1 + + + CollectionLiteralInAnnotation.kt + 59 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 70 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 67 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + / + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 71 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 84 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 83 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 85 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 98 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 13 + 1 + + + LambdaParameterList.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 38 + 1 + + + LambdaParameterList.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 5 + 1 + + + LambdaParameterList.kt + 56 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 14 + 1 + + + LambdaParameterList.kt + 64 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 5 + 1 + + + LambdaParameterList.kt + 81 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 13 + 1 + + + LambdaParameterList.kt + 87 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 5 + 1 + + + LambdaParameterList.kt + 108 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 17 + 1 + + + LambdaParameterList.kt + 115 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + LambdaParameterList.kt + 122 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + LambdaParameterList.kt + 139 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 9 + 1 + + + LambdaParameterList.kt + 168 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 17 + 1 + + + LambdaParameterList.kt + 175 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + LambdaParameterList.kt + 175 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + LambdaParameterList.kt + 182 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + TypeParameterList.kt + 18 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 23 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 46 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 57 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 61 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 78 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 17 + 1 + + + TypeParameterList.kt + 84 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 89 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 100 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 5 + 1 + + + TypeParameterList.kt + 110 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 115 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 132 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 138 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 149 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 153 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 168 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 5 + 1 + + + TypeParameterList.kt + 170 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 20 + 1 + + + TypeParameterList.kt + 176 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 187 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 6 + 1 + + + TypeParameterList.kt + 213 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 17 + 1 + + + TypeParameterList.kt + 218 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + TypeParameterList.kt + 218 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 223 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 240 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 9 + 1 + + + TypeParameterList.kt + 240 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 31 + 1 + + + TypeParameterList.kt + 247 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 8 + 1 + + + TypeParameterList.kt + 247 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 9 + 1 + + + TypeParameterList.kt + 252 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + TypeParameterList.kt + 252 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 12 + 1 + + + TypeParameterList.kt + 257 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + TypeParameterList.kt + 257 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeArgumentList.kt + 3 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + t + 22 + 1 + + + TypeArgumentList.kt + 2 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 34 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + TypeArgumentList.kt + 38 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 56 + 1 + + + TypeArgumentList.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 41 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 13 + 1 + + + TypeArgumentList.kt + 43 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + TypeArgumentList.kt + 45 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 48 + 1 + + + TypeArgumentList.kt + 78 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + TypeArgumentList.kt + 91 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + TypeArgumentList.kt + 93 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 94 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 6 + 1 + + + TypeArgumentList.kt + 97 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 23 + 1 + + + TypeArgumentList.kt + 99 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 100 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 34 + 1 + + + TypeArgumentList.kt + 102 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + TypeArgumentList.kt + 104 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + TypeArgumentList.kt + 106 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + TypeArgumentList.kt + 109 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + TypeArgumentList.kt + 111 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + IndicesAccess.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + IndicesAccess.kt + 30 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 31 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 39 + 1 + + + IndicesAccess.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + IndicesAccess.kt + 35 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + IndicesAccess.kt + 47 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + IndicesAccess.kt + 49 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + C + 16 + 1 + + + IndicesAccess.kt + 50 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 33 + 1 + + + IndicesAccess.kt + 72 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 42 + 1 + + + IndicesAccess.kt + 74 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + { + 16 + 1 + + + IndicesAccess.kt + 75 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 13 + 1 + + + IndicesAccess.kt + 91 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 107 + 1 + + + IndicesAccess.kt + 95 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 90 + 1 + + + IndicesAccess.kt + 138 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + IndicesAccess.kt + 151 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + IndicesAccess.kt + 153 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 154 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 34 + 1 + + + IndicesAccess.kt + 156 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + IndicesAccess.kt + 158 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + IndicesAccess.kt + 160 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + IndicesAccess.kt + 163 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + IndicesAccess.kt + 165 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 \ No newline at end of file diff --git a/idea/testData/inspections/trailingCommaOnWithCodeStyle/inspectionData/expected.xml b/idea/testData/inspections/trailingCommaOnWithCodeStyle/inspectionData/expected.xml index 11b457c39db..99c5e37c18f 100644 --- a/idea/testData/inspections/trailingCommaOnWithCodeStyle/inspectionData/expected.xml +++ b/idea/testData/inspections/trailingCommaOnWithCodeStyle/inspectionData/expected.xml @@ -1,4 +1,28 @@ + + ArgumentList.kt + 2 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 3 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 19 + 1 + ArgumentList.kt 3 @@ -7,6 +31,9 @@ Trailing comma recommendations Missing trailing comma + ) + 19 + 1 ArgumentList.kt @@ -16,6 +43,21 @@ Trailing comma recommendations Missing trailing comma + + 43 + 1 + + + ArgumentList.kt + 9 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 ArgumentList.kt @@ -25,6 +67,21 @@ Trailing comma recommendations Missing trailing comma + + 48 + 1 + + + ArgumentList.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 ArgumentList.kt @@ -34,6 +91,21 @@ Trailing comma recommendations Missing trailing comma + + 11 + 1 + + + ArgumentList.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 ArgumentList.kt @@ -43,6 +115,21 @@ Trailing comma recommendations Missing trailing comma + + 19 + 1 + + + ArgumentList.kt + 20 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 ArgumentList.kt @@ -52,6 +139,9 @@ Trailing comma recommendations Missing trailing comma + ) + 14 + 1 ArgumentList.kt @@ -61,6 +151,9 @@ Trailing comma recommendations Missing trailing comma + + 14 + 1 ArgumentList.kt @@ -70,6 +163,9 @@ Trailing comma recommendations Useless trailing comma + , + 19 + 1 ArgumentList.kt @@ -79,6 +175,9 @@ Trailing comma recommendations Useless trailing comma + , + 56 + 1 ArgumentList.kt @@ -88,6 +187,9 @@ Trailing comma recommendations Useless trailing comma + , + 45 + 1 ArgumentList.kt @@ -97,6 +199,33 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 + + + ArgumentList.kt + 38 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + ArgumentList.kt + 42 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 ArgumentList.kt @@ -106,6 +235,9 @@ Trailing comma recommendations Missing trailing comma + ) + 5 + 1 ArgumentList.kt @@ -115,6 +247,21 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 + + + ArgumentList.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + C + 16 + 1 ArgumentList.kt @@ -124,6 +271,21 @@ Trailing comma recommendations Missing trailing comma + + 51 + 1 + + + ArgumentList.kt + 56 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 43 + 1 ArgumentList.kt @@ -133,6 +295,33 @@ Trailing comma recommendations Missing trailing comma + ) + 43 + 1 + + + ArgumentList.kt + 60 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + ArgumentList.kt + 64 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 ArgumentList.kt @@ -142,6 +331,9 @@ Trailing comma recommendations Missing trailing comma + ) + 5 + 1 ArgumentList.kt @@ -151,6 +343,21 @@ Trailing comma recommendations Useless trailing comma + , + 42 + 1 + + + ArgumentList.kt + 70 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + { + 16 + 1 ArgumentList.kt @@ -160,6 +367,21 @@ Trailing comma recommendations Missing trailing comma + + 42 + 1 + + + ArgumentList.kt + 78 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 34 + 1 ArgumentList.kt @@ -169,6 +391,33 @@ Trailing comma recommendations Missing trailing comma + ) + 34 + 1 + + + ArgumentList.kt + 82 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + ArgumentList.kt + 86 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 ArgumentList.kt @@ -178,6 +427,9 @@ Trailing comma recommendations Missing trailing comma + ) + 5 + 1 ArgumentList.kt @@ -187,6 +439,21 @@ Trailing comma recommendations Useless trailing comma + , + 48 + 1 + + + ArgumentList.kt + 92 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 16 + 1 ArgumentList.kt @@ -196,6 +463,21 @@ Trailing comma recommendations Missing trailing comma + + 48 + 1 + + + ArgumentList.kt + 100 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 40 + 1 ArgumentList.kt @@ -205,6 +487,33 @@ Trailing comma recommendations Missing trailing comma + ) + 40 + 1 + + + ArgumentList.kt + 104 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + ArgumentList.kt + 108 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 ArgumentList.kt @@ -214,6 +523,33 @@ Trailing comma recommendations Missing trailing comma + ) + 5 + 1 + + + ArgumentList.kt + 110 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + ArgumentList.kt + 112 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 ArgumentList.kt @@ -223,6 +559,9 @@ Trailing comma recommendations Missing trailing comma + ) + 5 + 1 ArgumentList.kt @@ -232,6 +571,21 @@ Trailing comma recommendations Useless trailing comma + , + 90 + 1 + + + ArgumentList.kt + 118 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + o + 16 + 1 ArgumentList.kt @@ -241,6 +595,21 @@ Trailing comma recommendations Missing trailing comma + + 90 + 1 + + + ArgumentList.kt + 126 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 82 + 1 ArgumentList.kt @@ -250,6 +619,9 @@ Trailing comma recommendations Missing trailing comma + ) + 82 + 1 ArgumentList.kt @@ -259,6 +631,9 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 6 + 1 ArgumentList.kt @@ -268,6 +643,33 @@ Trailing comma recommendations Missing trailing comma + + 17 + 1 + + + ArgumentList.kt + 134 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + / + 13 + 1 + + + ArgumentList.kt + 138 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 19 + 1 ArgumentList.kt @@ -277,6 +679,33 @@ Trailing comma recommendations Missing trailing comma + ) + 19 + 1 + + + ArgumentList.kt + 140 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 141 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 6 + 1 ArgumentList.kt @@ -286,6 +715,21 @@ Trailing comma recommendations Missing trailing comma + / + 48 + 1 + + + ArgumentList.kt + 143 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 ArgumentList.kt @@ -295,6 +739,21 @@ Trailing comma recommendations Missing trailing comma + + 48 + 1 + + + ArgumentList.kt + 146 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 ArgumentList.kt @@ -304,6 +763,21 @@ Trailing comma recommendations Missing trailing comma + + 11 + 1 + + + ArgumentList.kt + 152 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 ArgumentList.kt @@ -313,6 +787,21 @@ Trailing comma recommendations Missing trailing comma + + 19 + 1 + + + ArgumentList.kt + 155 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 13 + 1 ArgumentList.kt @@ -322,6 +811,9 @@ Trailing comma recommendations Missing trailing comma + + 14 + 1 ArgumentList.kt @@ -331,6 +823,9 @@ Trailing comma recommendations Useless trailing comma + , + 19 + 1 ArgumentList.kt @@ -340,6 +835,21 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 8 + 1 + + + ArgumentList.kt + 161 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 ArgumentList.kt @@ -349,6 +859,21 @@ Trailing comma recommendations Missing trailing comma + + 19 + 1 + + + ArgumentList.kt + 165 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 ArgumentList.kt @@ -358,6 +883,21 @@ Trailing comma recommendations Missing trailing comma + + 19 + 1 + + + ArgumentList.kt + 168 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 13 + 1 ArgumentList.kt @@ -367,6 +907,9 @@ Trailing comma recommendations Missing trailing comma + + 14 + 1 ArgumentList.kt @@ -376,6 +919,33 @@ Trailing comma recommendations Useless trailing comma + , + 19 + 1 + + + ArgumentList.kt + 174 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 175 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 34 + 1 ArgumentList.kt @@ -385,6 +955,9 @@ Trailing comma recommendations Useless trailing comma + , + 45 + 1 ArgumentList.kt @@ -394,6 +967,9 @@ Trailing comma recommendations Useless trailing comma + , + 45 + 1 ArgumentList.kt @@ -403,6 +979,9 @@ Trailing comma recommendations Useless trailing comma + , + 45 + 1 ArgumentList.kt @@ -412,6 +991,33 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 7 + 1 + + + ArgumentList.kt + 181 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 182 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 ArgumentList.kt @@ -421,6 +1027,9 @@ Trailing comma recommendations Missing trailing comma + ) + 14 + 1 ArgumentList.kt @@ -430,6 +1039,9 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 ArgumentList.kt @@ -439,6 +1051,33 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 + + + ArgumentList.kt + 186 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 187 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 12 + 1 ArgumentList.kt @@ -448,6 +1087,33 @@ Trailing comma recommendations Missing trailing comma + ) + 12 + 1 + + + ArgumentList.kt + 189 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + ArgumentList.kt + 193 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 ArgumentList.kt @@ -457,6 +1123,21 @@ Trailing comma recommendations Missing trailing comma + ) + 5 + 1 + + + ArgumentList.kt + 195 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + C + 16 + 1 ArgumentList.kt @@ -466,6 +1147,141 @@ Trailing comma recommendations Missing trailing comma + + 51 + 1 + + + ArgumentList.kt + 198 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + o + 16 + 1 + + + ArgumentList.kt + 199 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 6 + 1 + + + ArgumentList.kt + 201 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 16 + 1 + + + ArgumentList.kt + 202 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 6 + 1 + + + ArgumentList.kt + 204 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + { + 16 + 1 + + + ArgumentList.kt + 205 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 33 + 1 + + + ArgumentList.kt + 207 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + C + 16 + 1 + + + ArgumentList.kt + 208 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + ArgumentList.kt + 211 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 15 + 1 + + + ArgumentList.kt + 210 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + t + 30 + 1 + + + ArgumentList.kt + 211 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 16 + 1 ArgumentList.kt @@ -475,6 +1291,33 @@ Trailing comma recommendations Missing trailing comma + ) + 16 + 1 + + + ArgumentList.kt + 210 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 211 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 25 + 1 ArgumentList.kt @@ -484,6 +1327,33 @@ Trailing comma recommendations Missing trailing comma + ) + 25 + 1 + + + ArgumentList.kt + 213 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 214 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 ArgumentList.kt @@ -493,6 +1363,9 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 10 + 1 ArgumentList.kt @@ -502,366 +1375,9 @@ Trailing comma recommendations Comma loses the advantages in this position - - - CollectionLiteralInAnnotation.kt - 4 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - CollectionLiteralInAnnotation.kt - 7 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 8 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 12 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 16 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 16 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 22 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - CollectionLiteralInAnnotation.kt - 25 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 26 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 30 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 34 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 34 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 40 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - CollectionLiteralInAnnotation.kt - 43 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 44 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 48 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 52 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 52 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 55 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 56 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 60 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 63 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 64 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 70 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - CollectionLiteralInAnnotation.kt - 71 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 76 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 76 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 80 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - CollectionLiteralInAnnotation.kt - 80 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 80 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 84 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - CollectionLiteralInAnnotation.kt - 85 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 89 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 90 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 93 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 94 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 98 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 102 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 103 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - CollectionLiteralInAnnotation.kt - 109 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma + , + 10 + 1 DestructionDeclarationsInLambda.kt @@ -871,6 +1387,9 @@ Trailing comma recommendations Useless trailing comma + , + 46 + 1 DestructionDeclarationsInLambda.kt @@ -880,6 +1399,9 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 DestructionDeclarationsInLambda.kt @@ -889,6 +1411,33 @@ Trailing comma recommendations Useless trailing comma + , + 50 + 1 + + + DestructionDeclarationsInLambda.kt + 9 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 42 + 1 + + + DestructionDeclarationsInLambda.kt + 10 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 46 + 1 DestructionDeclarationsInLambda.kt @@ -898,6 +1447,45 @@ Trailing comma recommendations Missing trailing comma + ) + 46 + 1 + + + DestructionDeclarationsInLambda.kt + 9 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 10 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 52 + 1 + + + DestructionDeclarationsInLambda.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 46 + 1 DestructionDeclarationsInLambda.kt @@ -907,6 +1495,33 @@ Trailing comma recommendations Missing trailing comma + ) + 46 + 1 + + + DestructionDeclarationsInLambda.kt + 14 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 52 + 1 DestructionDeclarationsInLambda.kt @@ -916,6 +1531,45 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 45 + 1 + + + DestructionDeclarationsInLambda.kt + 22 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 48 + 1 + + + DestructionDeclarationsInLambda.kt + 20 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 22 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 54 + 1 DestructionDeclarationsInLambda.kt @@ -925,6 +1579,57 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 3 + 1 + + + DestructionDeclarationsInLambda.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 42 + 1 + + + DestructionDeclarationsInLambda.kt + 28 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 4 + 1 + + + DestructionDeclarationsInLambda.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 28 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 10 + 1 DestructionDeclarationsInLambda.kt @@ -934,6 +1639,9 @@ Trailing comma recommendations Useless trailing comma + , + 50 + 1 DestructionDeclarationsInLambda.kt @@ -943,6 +1651,33 @@ Trailing comma recommendations Useless trailing comma + , + 54 + 1 + + + DestructionDeclarationsInLambda.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 42 + 1 + + + DestructionDeclarationsInLambda.kt + 41 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 2 + 1 DestructionDeclarationsInLambda.kt @@ -952,6 +1687,33 @@ Trailing comma recommendations Missing trailing comma + / + 46 + 1 + + + DestructionDeclarationsInLambda.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 41 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 DestructionDeclarationsInLambda.kt @@ -961,6 +1723,33 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 2 + 1 + + + DestructionDeclarationsInLambda.kt + 45 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + / + 42 + 1 + + + DestructionDeclarationsInLambda.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 2 + 1 DestructionDeclarationsInLambda.kt @@ -970,6 +1759,33 @@ Trailing comma recommendations Missing trailing comma + / + 46 + 1 + + + DestructionDeclarationsInLambda.kt + 45 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 DestructionDeclarationsInLambda.kt @@ -979,6 +1795,33 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 2 + 1 + + + DestructionDeclarationsInLambda.kt + 53 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + / + 9 + 1 + + + DestructionDeclarationsInLambda.kt + 56 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 2 + 1 DestructionDeclarationsInLambda.kt @@ -988,6 +1831,21 @@ Trailing comma recommendations Missing trailing comma + / + 46 + 1 + + + DestructionDeclarationsInLambda.kt + 57 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 11 + 1 DestructionDeclarationsInLambda.kt @@ -997,1644 +1855,45 @@ Trailing comma recommendations Useless trailing comma + , + 46 + 1 - Enum.kt - 24 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - Enum.kt - 30 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - Enum.kt - 36 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 3 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 6 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 9 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 13 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 16 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 20 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 23 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 26 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 33 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 35 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 43 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 47 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 52 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 60 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 68 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 72 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 77 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 81 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 89 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 91 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 95 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 97 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 105 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 110 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - IndicesAccess.kt - 110 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 117 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 119 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 122 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 128 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 131 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 135 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 138 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 141 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - IndicesAccess.kt - 141 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 144 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 148 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 151 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 156 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 158 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 160 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 161 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - IndicesAccess.kt - 161 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 163 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 165 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 166 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 172 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - IndicesAccess.kt - 174 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaParameterList.kt - 13 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaParameterList.kt - 19 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaParameterList.kt - 48 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaParameterList.kt - 75 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaParameterList.kt - 81 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - LambdaParameterList.kt - 100 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaParameterList.kt - 127 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaParameterList.kt - 146 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaParameterList.kt - 153 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaParameterList.kt - 160 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - LambdaParameterList.kt - 160 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaParameterList.kt - 175 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - LambdaParameterList.kt - 187 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaValueParameters.kt - 4 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaValueParameters.kt - 11 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaValueParameters.kt - 20 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - LambdaValueParameters.kt - 33 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - LambdaValueParameters.kt - 37 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaValueParameters.kt - 43 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaValueParameters.kt - 49 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaValueParameters.kt - 54 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaValueParameters.kt + DestructionDeclarationsInLambda.kt 61 testProject light_idea_test_case - + Trailing comma recommendations - Comma loses the advantages in this position + Missing line break + + 40 + 1 - LambdaValueParameters.kt - 70 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - LambdaValueParameters.kt - 74 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - LambdaValueParameters.kt - 80 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - MultiVariableDeclaration.kt - 12 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 14 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 21 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - MultiVariableDeclaration.kt - 25 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 30 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - MultiVariableDeclaration.kt - 34 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - MultiVariableDeclaration.kt - 37 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - MultiVariableDeclaration.kt - 45 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - MultiVariableDeclaration.kt - 61 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 63 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 65 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 68 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 70 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - MultiVariableDeclaration.kt - 73 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - MultiVariableDeclaration.kt - 76 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - MultiVariableDeclaration.kt - 80 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - MultiVariableDeclaration.kt - 83 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - MultiVariableDeclaration.kt - 91 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - MultiVariableDeclaration.kt - 97 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - ParameterList.kt - 20 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 76 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 118 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - ParameterList.kt - 171 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 184 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 205 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 224 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 243 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 263 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 269 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 279 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 295 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 298 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - ParameterList.kt - 302 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - ParameterList.kt - 315 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 321 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 347 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 368 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 387 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 407 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 422 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 428 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 433 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 438 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - ParameterList.kt - 438 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - ParameterList.kt - 449 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - ParameterList.kt - 457 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 11 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 14 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 17 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 21 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 24 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 28 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 31 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 34 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 38 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 43 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 45 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 50 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeArgumentList.kt - 50 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 57 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 59 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt + DestructionDeclarationsInLambda.kt 62 testProject light_idea_test_case - + Trailing comma recommendations - Missing trailing comma + Missing line break + - + 44 + 1 - TypeArgumentList.kt - 68 + WhenEntry.kt + 15 testProject light_idea_test_case - + Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 71 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 75 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 78 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 81 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeArgumentList.kt - 81 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 84 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 88 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 91 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 102 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 104 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 106 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 107 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeArgumentList.kt - 107 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeArgumentList.kt - 109 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 111 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 112 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 9 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 13 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 34 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 53 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 72 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 92 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 96 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 105 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 126 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 145 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 165 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 179 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 187 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeParameterList.kt - 192 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 197 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 202 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 207 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 207 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 218 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 226 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 230 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 235 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma - - - TypeParameterList.kt - 240 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 240 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 247 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 252 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 257 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 260 - testProject - light_idea_test_case - - Trailing comma recommendations - Missing trailing comma + Missing line break + - + 44 + 1 WhenEntry.kt @@ -2644,6 +1903,9 @@ Trailing comma recommendations Missing trailing comma + + 21 + 1 WhenEntry.kt @@ -2653,6 +1915,21 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 43 + 1 + + + WhenEntry.kt + 21 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 45 + 1 WhenEntry.kt @@ -2662,6 +1939,9 @@ Trailing comma recommendations Useless trailing comma + , + 9 + 1 WhenEntry.kt @@ -2671,6 +1951,21 @@ Trailing comma recommendations Missing trailing comma + + 9 + 1 + + + WhenEntry.kt + 54 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 15 + 1 WhenEntry.kt @@ -2680,6 +1975,21 @@ Trailing comma recommendations Missing trailing comma + + 9 + 1 + + + WhenEntry.kt + 62 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 15 + 1 WhenEntry.kt @@ -2689,6 +1999,9 @@ Trailing comma recommendations Missing trailing comma + + 9 + 1 WhenEntry.kt @@ -2698,5 +2011,5540 @@ Trailing comma recommendations Missing trailing comma + + 17 + 1 + + + LambdaValueParameters.kt + 4 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 37 + 1 + + + LambdaValueParameters.kt + 11 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 37 + 1 + + + LambdaValueParameters.kt + 20 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 76 + 1 + + + LambdaValueParameters.kt + 24 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + y + 12 + 1 + + + LambdaValueParameters.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + LambdaValueParameters.kt + 37 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + y + 12 + 1 + + + LambdaValueParameters.kt + 37 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 45 + 1 + + + LambdaValueParameters.kt + 43 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 41 + 1 + + + LambdaValueParameters.kt + 43 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 41 + 1 + + + LambdaValueParameters.kt + 49 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 37 + 1 + + + LambdaValueParameters.kt + 54 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + y + 12 + 1 + + + LambdaValueParameters.kt + 54 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 76 + 1 + + + LambdaValueParameters.kt + 61 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + LambdaValueParameters.kt + 60 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + y + 12 + 1 + + + LambdaValueParameters.kt + 62 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 6 + 1 + + + LambdaValueParameters.kt + 70 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 49 + 1 + + + LambdaValueParameters.kt + 74 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + y + 12 + 1 + + + LambdaValueParameters.kt + 74 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 45 + 1 + + + LambdaValueParameters.kt + 79 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 12 + 1 + + + LambdaValueParameters.kt + 80 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 43 + 1 + + + LambdaValueParameters.kt + 80 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 43 + 1 + + + Enum.kt + 24 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 9 + 1 + + + Enum.kt + 30 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 9 + 1 + + + Enum.kt + 36 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 9 + 1 + + + ParameterList.kt + 20 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 17 + 1 + + + ParameterList.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 46 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + ParameterList.kt + 76 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 17 + 1 + + + ParameterList.kt + 92 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 108 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + ParameterList.kt + 118 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 25 + 1 + + + ParameterList.kt + 135 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 145 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + ParameterList.kt + 157 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 29 + 1 + + + ParameterList.kt + 171 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 28 + 1 + + + ParameterList.kt + 171 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 28 + 1 + + + ParameterList.kt + 184 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 17 + 1 + + + ParameterList.kt + 189 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 194 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 205 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 17 + 1 + + + ParameterList.kt + 211 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 217 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 224 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 17 + 1 + + + ParameterList.kt + 228 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 232 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 243 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 17 + 1 + + + ParameterList.kt + 249 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 21 + 1 + + + ParameterList.kt + 255 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 260 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 263 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 47 + 1 + + + ParameterList.kt + 269 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 10 + 1 + + + ParameterList.kt + 279 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 5 + 1 + + + ParameterList.kt + 295 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 5 + 1 + + + ParameterList.kt + 298 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 30 + 1 + + + ParameterList.kt + 302 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 52 + 1 + + + ParameterList.kt + 315 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 10 + 1 + + + ParameterList.kt + 321 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 10 + 1 + + + ParameterList.kt + 334 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 17 + 1 + + + ParameterList.kt + 337 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 17 + 1 + + + ParameterList.kt + 338 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 347 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + ParameterList.kt + 352 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + ParameterList.kt + 357 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 368 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + ParameterList.kt + 374 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + ParameterList.kt + 380 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 387 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + ParameterList.kt + 391 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + ParameterList.kt + 395 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 407 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + ParameterList.kt + 410 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 7 + 1 + + + ParameterList.kt + 412 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 20 + 1 + + + ParameterList.kt + 418 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 422 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 10 + 1 + + + ParameterList.kt + 428 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 10 + 1 + + + ParameterList.kt + 433 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 29 + 1 + + + ParameterList.kt + 438 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 14 + 1 + + + ParameterList.kt + 438 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 35 + 1 + + + ParameterList.kt + 444 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 21 + 1 + + + ParameterList.kt + 449 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + ParameterList.kt + 449 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 454 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 457 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 47 + 1 + + + MultiVariableDeclaration.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 13 + 1 + + + MultiVariableDeclaration.kt + 14 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 10 + 1 + + + MultiVariableDeclaration.kt + 17 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 21 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 21 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 10 + 1 + + + MultiVariableDeclaration.kt + 25 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 10 + 1 + + + MultiVariableDeclaration.kt + 28 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 10 + 1 + + + MultiVariableDeclaration.kt + 30 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 30 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + MultiVariableDeclaration.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 34 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + MultiVariableDeclaration.kt + 34 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 9 + 1 + + + MultiVariableDeclaration.kt + 37 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 12 + 1 + + + MultiVariableDeclaration.kt + 44 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 45 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 12 + 1 + + + MultiVariableDeclaration.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 61 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 17 + 1 + + + MultiVariableDeclaration.kt + 63 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 21 + 1 + + + MultiVariableDeclaration.kt + 65 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 14 + 1 + + + MultiVariableDeclaration.kt + 68 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 10 + 1 + + + MultiVariableDeclaration.kt + 70 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 70 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + / + 13 + 1 + + + MultiVariableDeclaration.kt + 73 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 73 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + / + 13 + 1 + + + MultiVariableDeclaration.kt + 76 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 76 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 17 + 1 + + + MultiVariableDeclaration.kt + 79 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 80 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 17 + 1 + + + MultiVariableDeclaration.kt + 80 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 17 + 1 + + + MultiVariableDeclaration.kt + 84 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + MultiVariableDeclaration.kt + 83 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 12 + 1 + + + MultiVariableDeclaration.kt + 90 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 93 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 10 + 1 + + + MultiVariableDeclaration.kt + 91 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 12 + 1 + + + MultiVariableDeclaration.kt + 97 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 12 + 1 + + + MultiVariableDeclaration.kt + 95 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + CollectionLiteralInAnnotation.kt + 4 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 8 + 1 + + + CollectionLiteralInAnnotation.kt + 7 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 7 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 8 + 1 + + + CollectionLiteralInAnnotation.kt + 7 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 8 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 8 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 13 + 1 + + + CollectionLiteralInAnnotation.kt + 11 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + CollectionLiteralInAnnotation.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 14 + 1 + + + CollectionLiteralInAnnotation.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 12 + 1 + + + CollectionLiteralInAnnotation.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 11 + 1 + + + CollectionLiteralInAnnotation.kt + 15 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 13 + 1 + + + CollectionLiteralInAnnotation.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 13 + 1 + + + CollectionLiteralInAnnotation.kt + 22 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 11 + 1 + + + CollectionLiteralInAnnotation.kt + 25 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 25 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 11 + 1 + + + CollectionLiteralInAnnotation.kt + 25 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 30 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 16 + 1 + + + CollectionLiteralInAnnotation.kt + 29 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 30 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 17 + 1 + + + CollectionLiteralInAnnotation.kt + 30 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 17 + 1 + + + CollectionLiteralInAnnotation.kt + 34 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 15 + 1 + + + CollectionLiteralInAnnotation.kt + 34 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 14 + 1 + + + CollectionLiteralInAnnotation.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 34 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 16 + 1 + + + CollectionLiteralInAnnotation.kt + 34 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 16 + 1 + + + CollectionLiteralInAnnotation.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 14 + 1 + + + CollectionLiteralInAnnotation.kt + 43 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 43 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 10 + 1 + + + CollectionLiteralInAnnotation.kt + 43 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 44 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 44 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 13 + 1 + + + CollectionLiteralInAnnotation.kt + 47 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + CollectionLiteralInAnnotation.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 14 + 1 + + + CollectionLiteralInAnnotation.kt + 52 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 20 + 1 + + + CollectionLiteralInAnnotation.kt + 52 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 19 + 1 + + + CollectionLiteralInAnnotation.kt + 51 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 52 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 21 + 1 + + + CollectionLiteralInAnnotation.kt + 52 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 21 + 1 + + + CollectionLiteralInAnnotation.kt + 55 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 56 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 55 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + / + 8 + 1 + + + CollectionLiteralInAnnotation.kt + 55 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 56 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 56 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 59 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 59 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 60 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 60 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 63 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 63 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 8 + 1 + + + CollectionLiteralInAnnotation.kt + 63 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 64 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 64 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 70 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 67 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + / + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 71 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 67 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 71 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + CollectionLiteralInAnnotation.kt + 71 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 8 + 1 + + + CollectionLiteralInAnnotation.kt + 76 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 10 + 1 + + + CollectionLiteralInAnnotation.kt + 76 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 9 + 1 + + + CollectionLiteralInAnnotation.kt + 74 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 76 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 11 + 1 + + + CollectionLiteralInAnnotation.kt + 76 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 11 + 1 + + + CollectionLiteralInAnnotation.kt + 80 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 79 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 80 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 8 + 1 + + + CollectionLiteralInAnnotation.kt + 80 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ] + 8 + 1 + + + CollectionLiteralInAnnotation.kt + 79 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 80 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + CollectionLiteralInAnnotation.kt + 80 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 9 + 1 + + + CollectionLiteralInAnnotation.kt + 84 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 83 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 85 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 83 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 85 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 85 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 88 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + / + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 89 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 10 + 1 + + + CollectionLiteralInAnnotation.kt + 88 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 90 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 90 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 93 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 93 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 10 + 1 + + + CollectionLiteralInAnnotation.kt + 93 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 94 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 94 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 98 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 13 + 1 + + + CollectionLiteralInAnnotation.kt + 97 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 98 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + CollectionLiteralInAnnotation.kt + 98 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 14 + 1 + + + CollectionLiteralInAnnotation.kt + 103 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 102 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 15 + 1 + + + CollectionLiteralInAnnotation.kt + 101 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + [ + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 103 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + CollectionLiteralInAnnotation.kt + 103 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ) + 8 + 1 + + + CollectionLiteralInAnnotation.kt + 109 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 27 + 1 + + + LambdaParameterList.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 9 + 1 + + + LambdaParameterList.kt + 13 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + LambdaParameterList.kt + 13 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + - + 8 + 1 + + + LambdaParameterList.kt + 19 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + LambdaParameterList.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 38 + 1 + + + LambdaParameterList.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 5 + 1 + + + LambdaParameterList.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + LambdaParameterList.kt + 56 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 14 + 1 + + + LambdaParameterList.kt + 64 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 5 + 1 + + + LambdaParameterList.kt + 75 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + LambdaParameterList.kt + 81 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 13 + 1 + + + LambdaParameterList.kt + 87 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 5 + 1 + + + LambdaParameterList.kt + 100 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + LambdaParameterList.kt + 108 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 17 + 1 + + + LambdaParameterList.kt + 115 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + LambdaParameterList.kt + 122 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + LambdaParameterList.kt + 127 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 35 + 1 + + + LambdaParameterList.kt + 139 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 9 + 1 + + + LambdaParameterList.kt + 146 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 10 + 1 + + + LambdaParameterList.kt + 153 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 21 + 1 + + + LambdaParameterList.kt + 160 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 9 + 1 + + + LambdaParameterList.kt + 160 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 26 + 1 + + + LambdaParameterList.kt + 168 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 17 + 1 + + + LambdaParameterList.kt + 175 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + LambdaParameterList.kt + 175 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + LambdaParameterList.kt + 182 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + LambdaParameterList.kt + 187 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 35 + 1 + + + TypeParameterList.kt + 8 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 9 + 1 + + + TypeParameterList.kt + 9 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 9 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + > + 8 + 1 + + + TypeParameterList.kt + 13 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + TypeParameterList.kt + 18 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 23 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 34 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + TypeParameterList.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 46 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 53 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + TypeParameterList.kt + 57 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 61 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 72 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + TypeParameterList.kt + 78 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 17 + 1 + + + TypeParameterList.kt + 84 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 89 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 92 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 35 + 1 + + + TypeParameterList.kt + 96 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 16 + 1 + + + TypeParameterList.kt + 100 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 5 + 1 + + + TypeParameterList.kt + 104 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 5 + 1 + + + TypeParameterList.kt + 105 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + TypeParameterList.kt + 110 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 115 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 126 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + TypeParameterList.kt + 132 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 138 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 145 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + TypeParameterList.kt + 149 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 153 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 165 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 13 + 1 + + + TypeParameterList.kt + 168 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 5 + 1 + + + TypeParameterList.kt + 170 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 20 + 1 + + + TypeParameterList.kt + 176 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 179 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 5 + 1 + + + TypeParameterList.kt + 187 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 6 + 1 + + + TypeParameterList.kt + 192 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 9 + 1 + + + TypeParameterList.kt + 192 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + > + 9 + 1 + + + TypeParameterList.kt + 197 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 10 + 1 + + + TypeParameterList.kt + 202 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 21 + 1 + + + TypeParameterList.kt + 207 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 9 + 1 + + + TypeParameterList.kt + 207 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 26 + 1 + + + TypeParameterList.kt + 213 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 17 + 1 + + + TypeParameterList.kt + 218 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + TypeParameterList.kt + 218 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 223 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 226 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 35 + 1 + + + TypeParameterList.kt + 230 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 10 + 1 + + + TypeParameterList.kt + 235 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 21 + 1 + + + TypeParameterList.kt + 240 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 9 + 1 + + + TypeParameterList.kt + 240 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 31 + 1 + + + TypeParameterList.kt + 247 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 8 + 1 + + + TypeParameterList.kt + 247 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 9 + 1 + + + TypeParameterList.kt + 252 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + TypeParameterList.kt + 252 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 12 + 1 + + + TypeParameterList.kt + 257 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + TypeParameterList.kt + 257 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 260 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 35 + 1 + + + TypeArgumentList.kt + 3 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + t + 22 + 1 + + + TypeArgumentList.kt + 2 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 10 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 11 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 24 + 1 + + + TypeArgumentList.kt + 11 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + > + 24 + 1 + + + TypeArgumentList.kt + 14 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 43 + 1 + + + TypeArgumentList.kt + 17 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 17 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 48 + 1 + + + TypeArgumentList.kt + 20 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 21 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 16 + 1 + + + TypeArgumentList.kt + 24 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 24 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 19 + 1 + + + TypeArgumentList.kt + 28 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeArgumentList.kt + 28 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + > + 14 + 1 + + + TypeArgumentList.kt + 31 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 14 + 1 + + + TypeArgumentList.kt + 34 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + TypeArgumentList.kt + 38 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 56 + 1 + + + TypeArgumentList.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 41 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 13 + 1 + + + TypeArgumentList.kt + 43 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + TypeArgumentList.kt + 45 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 48 + 1 + + + TypeArgumentList.kt + 50 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + TypeArgumentList.kt + 50 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 17 + 1 + + + TypeArgumentList.kt + 53 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + / + 13 + 1 + + + TypeArgumentList.kt + 57 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 17 + 1 + + + TypeArgumentList.kt + 57 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + > + 17 + 1 + + + TypeArgumentList.kt + 59 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 60 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 6 + 1 + + + TypeArgumentList.kt + 59 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + / + 48 + 1 + + + TypeArgumentList.kt + 62 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 62 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 48 + 1 + + + TypeArgumentList.kt + 65 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 68 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 16 + 1 + + + TypeArgumentList.kt + 71 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 71 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 19 + 1 + + + TypeArgumentList.kt + 74 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 13 + 1 + + + TypeArgumentList.kt + 75 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 14 + 1 + + + TypeArgumentList.kt + 78 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + TypeArgumentList.kt + 81 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 8 + 1 + + + TypeArgumentList.kt + 80 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 81 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 19 + 1 + + + TypeArgumentList.kt + 84 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 84 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 19 + 1 + + + TypeArgumentList.kt + 87 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 13 + 1 + + + TypeArgumentList.kt + 88 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 14 + 1 + + + TypeArgumentList.kt + 91 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + TypeArgumentList.kt + 93 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 94 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 6 + 1 + + + TypeArgumentList.kt + 97 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 23 + 1 + + + TypeArgumentList.kt + 99 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 100 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 34 + 1 + + + TypeArgumentList.kt + 102 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + TypeArgumentList.kt + 104 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + TypeArgumentList.kt + 106 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + TypeArgumentList.kt + 107 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 7 + 1 + + + TypeArgumentList.kt + 106 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 107 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeArgumentList.kt + 107 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + > + 14 + 1 + + + TypeArgumentList.kt + 109 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + TypeArgumentList.kt + 111 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + TypeArgumentList.kt + 111 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 112 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 12 + 1 + + + TypeArgumentList.kt + 112 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + > + 12 + 1 + + + IndicesAccess.kt + 2 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 3 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 24 + 1 + + + IndicesAccess.kt + 3 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ] + 24 + 1 + + + IndicesAccess.kt + 6 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 43 + 1 + + + IndicesAccess.kt + 9 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 9 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 48 + 1 + + + IndicesAccess.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 13 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 16 + 1 + + + IndicesAccess.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 19 + 1 + + + IndicesAccess.kt + 20 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 14 + 1 + + + IndicesAccess.kt + 20 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ] + 14 + 1 + + + IndicesAccess.kt + 23 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 14 + 1 + + + IndicesAccess.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + IndicesAccess.kt + 30 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 31 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 39 + 1 + + + IndicesAccess.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + IndicesAccess.kt + 35 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + IndicesAccess.kt + 39 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + IndicesAccess.kt + 43 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 5 + 1 + + + IndicesAccess.kt + 43 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ] + 5 + 1 + + + IndicesAccess.kt + 47 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + IndicesAccess.kt + 49 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + C + 16 + 1 + + + IndicesAccess.kt + 50 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 33 + 1 + + + IndicesAccess.kt + 52 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + C + 16 + 1 + + + IndicesAccess.kt + 52 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 51 + 1 + + + IndicesAccess.kt + 60 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 43 + 1 + + + IndicesAccess.kt + 60 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ] + 43 + 1 + + + IndicesAccess.kt + 64 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + IndicesAccess.kt + 68 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 17 + 1 + + + IndicesAccess.kt + 68 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ] + 17 + 1 + + + IndicesAccess.kt + 72 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 42 + 1 + + + IndicesAccess.kt + 74 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + { + 16 + 1 + + + IndicesAccess.kt + 75 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 13 + 1 + + + IndicesAccess.kt + 77 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + { + 16 + 1 + + + IndicesAccess.kt + 77 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 42 + 1 + + + IndicesAccess.kt + 81 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 34 + 1 + + + IndicesAccess.kt + 81 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ] + 34 + 1 + + + IndicesAccess.kt + 85 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + IndicesAccess.kt + 89 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 5 + 1 + + + IndicesAccess.kt + 89 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ] + 5 + 1 + + + IndicesAccess.kt + 91 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 107 + 1 + + + IndicesAccess.kt + 95 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 90 + 1 + + + IndicesAccess.kt + 97 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + o + 16 + 1 + + + IndicesAccess.kt + 97 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 90 + 1 + + + IndicesAccess.kt + 105 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 82 + 1 + + + IndicesAccess.kt + 105 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ] + 82 + 1 + + + IndicesAccess.kt + 110 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + IndicesAccess.kt + 110 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 17 + 1 + + + IndicesAccess.kt + 113 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + / + 13 + 1 + + + IndicesAccess.kt + 117 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 17 + 1 + + + IndicesAccess.kt + 117 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ] + 17 + 1 + + + IndicesAccess.kt + 119 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 120 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 6 + 1 + + + IndicesAccess.kt + 119 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + / + 48 + 1 + + + IndicesAccess.kt + 122 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 122 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 48 + 1 + + + IndicesAccess.kt + 125 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 128 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 16 + 1 + + + IndicesAccess.kt + 131 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 131 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 19 + 1 + + + IndicesAccess.kt + 134 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 13 + 1 + + + IndicesAccess.kt + 135 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 14 + 1 + + + IndicesAccess.kt + 138 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + IndicesAccess.kt + 141 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 8 + 1 + + + IndicesAccess.kt + 140 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 141 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 19 + 1 + + + IndicesAccess.kt + 144 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 144 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 19 + 1 + + + IndicesAccess.kt + 147 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 13 + 1 + + + IndicesAccess.kt + 148 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 14 + 1 + + + IndicesAccess.kt + 151 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + IndicesAccess.kt + 153 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 154 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 34 + 1 + + + IndicesAccess.kt + 156 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + IndicesAccess.kt + 158 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + IndicesAccess.kt + 160 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + IndicesAccess.kt + 161 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 7 + 1 + + + IndicesAccess.kt + 160 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 161 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 14 + 1 + + + IndicesAccess.kt + 161 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ] + 14 + 1 + + + IndicesAccess.kt + 163 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + IndicesAccess.kt + 165 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + IndicesAccess.kt + 165 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 166 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 12 + 1 + + + IndicesAccess.kt + 166 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ] + 12 + 1 + + + IndicesAccess.kt + 168 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + " + 16 + 1 + + + IndicesAccess.kt + 172 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 5 + 1 + + + IndicesAccess.kt + 172 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + ] + 5 + 1 + + + IndicesAccess.kt + 174 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + C + 16 + 1 + + + IndicesAccess.kt + 174 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing trailing comma + + 51 + 1 \ No newline at end of file diff --git a/idea/testData/inspections/trailingCommaOnWithoutCodeStyle/inspectionData/expected.xml b/idea/testData/inspections/trailingCommaOnWithoutCodeStyle/inspectionData/expected.xml index c42c3e1ddad..6fd774dbbd0 100644 --- a/idea/testData/inspections/trailingCommaOnWithoutCodeStyle/inspectionData/expected.xml +++ b/idea/testData/inspections/trailingCommaOnWithoutCodeStyle/inspectionData/expected.xml @@ -7,6 +7,9 @@ Trailing comma recommendations Useless trailing comma + , + 19 + 1 ArgumentList.kt @@ -16,6 +19,9 @@ Trailing comma recommendations Useless trailing comma + , + 56 + 1 ArgumentList.kt @@ -25,6 +31,9 @@ Trailing comma recommendations Useless trailing comma + , + 45 + 1 ArgumentList.kt @@ -34,6 +43,9 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 ArgumentList.kt @@ -43,6 +55,9 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 ArgumentList.kt @@ -52,6 +67,9 @@ Trailing comma recommendations Useless trailing comma + , + 42 + 1 ArgumentList.kt @@ -61,6 +79,9 @@ Trailing comma recommendations Useless trailing comma + , + 48 + 1 ArgumentList.kt @@ -70,6 +91,9 @@ Trailing comma recommendations Useless trailing comma + , + 90 + 1 ArgumentList.kt @@ -79,6 +103,9 @@ Trailing comma recommendations Useless trailing comma + , + 19 + 1 ArgumentList.kt @@ -88,6 +115,33 @@ Trailing comma recommendations Useless trailing comma + , + 19 + 1 + + + ArgumentList.kt + 174 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 175 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 34 + 1 ArgumentList.kt @@ -97,6 +151,9 @@ Trailing comma recommendations Useless trailing comma + , + 45 + 1 ArgumentList.kt @@ -106,6 +163,9 @@ Trailing comma recommendations Useless trailing comma + , + 45 + 1 ArgumentList.kt @@ -115,6 +175,9 @@ Trailing comma recommendations Useless trailing comma + , + 45 + 1 ArgumentList.kt @@ -124,6 +187,9 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 ArgumentList.kt @@ -133,6 +199,141 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 + + + ArgumentList.kt + 198 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + o + 16 + 1 + + + ArgumentList.kt + 199 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 6 + 1 + + + ArgumentList.kt + 201 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 16 + 1 + + + ArgumentList.kt + 202 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 6 + 1 + + + ArgumentList.kt + 204 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + { + 16 + 1 + + + ArgumentList.kt + 205 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 33 + 1 + + + ArgumentList.kt + 207 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + C + 16 + 1 + + + ArgumentList.kt + 208 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + ArgumentList.kt + 211 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 15 + 1 + + + ArgumentList.kt + 213 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + ArgumentList.kt + 214 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 ArgumentList.kt @@ -142,6 +343,9 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 10 + 1 ArgumentList.kt @@ -151,51 +355,9 @@ Trailing comma recommendations Comma loses the advantages in this position - - - CollectionLiteralInAnnotation.kt - 4 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - CollectionLiteralInAnnotation.kt - 22 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - CollectionLiteralInAnnotation.kt - 40 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - CollectionLiteralInAnnotation.kt - 70 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - CollectionLiteralInAnnotation.kt - 84 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position + , + 10 + 1 DestructionDeclarationsInLambda.kt @@ -205,6 +367,9 @@ Trailing comma recommendations Useless trailing comma + , + 46 + 1 DestructionDeclarationsInLambda.kt @@ -214,6 +379,9 @@ Trailing comma recommendations Useless trailing comma + , + 51 + 1 DestructionDeclarationsInLambda.kt @@ -223,6 +391,57 @@ Trailing comma recommendations Useless trailing comma + , + 50 + 1 + + + DestructionDeclarationsInLambda.kt + 9 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 10 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 52 + 1 + + + DestructionDeclarationsInLambda.kt + 14 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 16 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 52 + 1 DestructionDeclarationsInLambda.kt @@ -232,6 +451,45 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 45 + 1 + + + DestructionDeclarationsInLambda.kt + 22 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 48 + 1 + + + DestructionDeclarationsInLambda.kt + 20 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 22 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 54 + 1 DestructionDeclarationsInLambda.kt @@ -241,6 +499,57 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 3 + 1 + + + DestructionDeclarationsInLambda.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 42 + 1 + + + DestructionDeclarationsInLambda.kt + 28 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 4 + 1 + + + DestructionDeclarationsInLambda.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 28 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 10 + 1 DestructionDeclarationsInLambda.kt @@ -250,6 +559,9 @@ Trailing comma recommendations Useless trailing comma + , + 50 + 1 DestructionDeclarationsInLambda.kt @@ -259,6 +571,69 @@ Trailing comma recommendations Useless trailing comma + , + 54 + 1 + + + DestructionDeclarationsInLambda.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 41 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + DestructionDeclarationsInLambda.kt + 45 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + + 40 + 1 + + + DestructionDeclarationsInLambda.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + DestructionDeclarationsInLambda.kt + 57 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 11 + 1 DestructionDeclarationsInLambda.kt @@ -268,456 +643,33 @@ Trailing comma recommendations Useless trailing comma + , + 46 + 1 - IndicesAccess.kt - 26 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 33 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 35 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 47 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 72 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 91 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 95 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 138 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 151 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 156 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 158 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 160 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 163 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - IndicesAccess.kt - 165 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - LambdaParameterList.kt - 81 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - LambdaParameterList.kt - 175 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - LambdaValueParameters.kt - 20 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - LambdaValueParameters.kt - 33 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - LambdaValueParameters.kt + DestructionDeclarationsInLambda.kt 61 testProject light_idea_test_case - + Trailing comma recommendations - Comma loses the advantages in this position + Missing line break + + 40 + 1 - LambdaValueParameters.kt - 70 + DestructionDeclarationsInLambda.kt + 62 testProject light_idea_test_case - + Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 12 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 14 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 25 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 61 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 63 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 65 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 68 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - MultiVariableDeclaration.kt - 97 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - ParameterList.kt - 118 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - ParameterList.kt - 298 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - ParameterList.kt - 302 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - ParameterList.kt - 449 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeArgumentList.kt - 34 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 38 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 43 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 45 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 78 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 91 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 102 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 104 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 106 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 109 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeArgumentList.kt - 111 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeParameterList.kt - 187 - testProject - light_idea_test_case - - Trailing comma recommendations - Useless trailing comma - - - TypeParameterList.kt - 218 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 240 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 240 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 247 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 252 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position - - - TypeParameterList.kt - 257 - testProject - light_idea_test_case - - Trailing comma recommendations - Comma loses the advantages in this position + Missing line break + - + 44 + 1 WhenEntry.kt @@ -727,6 +679,21 @@ Trailing comma recommendations Comma loses the advantages in this position + , + 43 + 1 + + + WhenEntry.kt + 21 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 45 + 1 WhenEntry.kt @@ -736,5 +703,1880 @@ Trailing comma recommendations Useless trailing comma + , + 9 + 1 + + + LambdaValueParameters.kt + 20 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 76 + 1 + + + LambdaValueParameters.kt + 24 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + y + 12 + 1 + + + LambdaValueParameters.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + LambdaValueParameters.kt + 61 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + LambdaValueParameters.kt + 60 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + y + 12 + 1 + + + LambdaValueParameters.kt + 62 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 6 + 1 + + + LambdaValueParameters.kt + 70 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 49 + 1 + + + ParameterList.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 46 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + ParameterList.kt + 92 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 108 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + ParameterList.kt + 118 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 25 + 1 + + + ParameterList.kt + 135 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 145 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 9 + 1 + + + ParameterList.kt + 157 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 29 + 1 + + + ParameterList.kt + 189 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 194 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 211 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 217 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 228 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 232 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 249 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 21 + 1 + + + ParameterList.kt + 255 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 260 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 298 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 30 + 1 + + + ParameterList.kt + 302 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 52 + 1 + + + ParameterList.kt + 334 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 17 + 1 + + + ParameterList.kt + 337 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 17 + 1 + + + ParameterList.kt + 338 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 18 + 1 + + + ParameterList.kt + 352 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + ParameterList.kt + 357 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 374 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + ParameterList.kt + 380 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 391 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 14 + 1 + + + ParameterList.kt + 395 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 5 + 1 + + + ParameterList.kt + 410 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 7 + 1 + + + ParameterList.kt + 412 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 20 + 1 + + + ParameterList.kt + 418 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 444 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 21 + 1 + + + ParameterList.kt + 449 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + ParameterList.kt + 449 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + ParameterList.kt + 454 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 8 + 1 + + + MultiVariableDeclaration.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 13 + 1 + + + MultiVariableDeclaration.kt + 14 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 10 + 1 + + + MultiVariableDeclaration.kt + 17 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 25 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 10 + 1 + + + MultiVariableDeclaration.kt + 28 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ) + 10 + 1 + + + MultiVariableDeclaration.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + MultiVariableDeclaration.kt + 61 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 17 + 1 + + + MultiVariableDeclaration.kt + 63 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 21 + 1 + + + MultiVariableDeclaration.kt + 65 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 14 + 1 + + + MultiVariableDeclaration.kt + 68 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 10 + 1 + + + MultiVariableDeclaration.kt + 97 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 12 + 1 + + + MultiVariableDeclaration.kt + 95 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + a + 9 + 1 + + + CollectionLiteralInAnnotation.kt + 4 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 8 + 1 + + + CollectionLiteralInAnnotation.kt + 12 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 13 + 1 + + + CollectionLiteralInAnnotation.kt + 22 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 11 + 1 + + + CollectionLiteralInAnnotation.kt + 30 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 16 + 1 + + + CollectionLiteralInAnnotation.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 14 + 1 + + + CollectionLiteralInAnnotation.kt + 48 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 13 + 1 + + + CollectionLiteralInAnnotation.kt + 59 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 70 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 67 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + / + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 71 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 84 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 83 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + 1 + 7 + 1 + + + CollectionLiteralInAnnotation.kt + 85 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 6 + 1 + + + CollectionLiteralInAnnotation.kt + 98 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 13 + 1 + + + LambdaParameterList.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 38 + 1 + + + LambdaParameterList.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 5 + 1 + + + LambdaParameterList.kt + 56 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 14 + 1 + + + LambdaParameterList.kt + 64 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 5 + 1 + + + LambdaParameterList.kt + 81 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 13 + 1 + + + LambdaParameterList.kt + 87 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 5 + 1 + + + LambdaParameterList.kt + 108 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 17 + 1 + + + LambdaParameterList.kt + 115 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + LambdaParameterList.kt + 122 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + LambdaParameterList.kt + 139 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 9 + 1 + + + LambdaParameterList.kt + 168 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 17 + 1 + + + LambdaParameterList.kt + 175 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + LambdaParameterList.kt + 175 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + LambdaParameterList.kt + 182 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + - + 8 + 1 + + + TypeParameterList.kt + 18 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 23 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 46 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 57 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 61 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 78 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 17 + 1 + + + TypeParameterList.kt + 84 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 89 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 100 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 5 + 1 + + + TypeParameterList.kt + 110 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 115 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 132 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 138 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 149 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 14 + 1 + + + TypeParameterList.kt + 153 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 5 + 1 + + + TypeParameterList.kt + 168 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + x + 5 + 1 + + + TypeParameterList.kt + 170 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 20 + 1 + + + TypeParameterList.kt + 176 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 187 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 6 + 1 + + + TypeParameterList.kt + 213 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 17 + 1 + + + TypeParameterList.kt + 218 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + TypeParameterList.kt + 218 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 223 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeParameterList.kt + 240 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 9 + 1 + + + TypeParameterList.kt + 240 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 31 + 1 + + + TypeParameterList.kt + 247 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 8 + 1 + + + TypeParameterList.kt + 247 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 9 + 1 + + + TypeParameterList.kt + 252 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + TypeParameterList.kt + 252 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 12 + 1 + + + TypeParameterList.kt + 257 + testProject + light_idea_test_case + + Trailing comma recommendations + Comma loses the advantages in this position + , + 4 + 1 + + + TypeParameterList.kt + 257 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 8 + 1 + + + TypeArgumentList.kt + 3 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + t + 22 + 1 + + + TypeArgumentList.kt + 2 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 34 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + TypeArgumentList.kt + 38 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 56 + 1 + + + TypeArgumentList.kt + 40 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 41 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 13 + 1 + + + TypeArgumentList.kt + 43 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + TypeArgumentList.kt + 45 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 48 + 1 + + + TypeArgumentList.kt + 78 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + TypeArgumentList.kt + 91 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + TypeArgumentList.kt + 93 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 94 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 6 + 1 + + + TypeArgumentList.kt + 97 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 23 + 1 + + + TypeArgumentList.kt + 99 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + TypeArgumentList.kt + 100 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + > + 34 + 1 + + + TypeArgumentList.kt + 102 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + TypeArgumentList.kt + 104 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + TypeArgumentList.kt + 106 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + TypeArgumentList.kt + 109 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + TypeArgumentList.kt + 111 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + IndicesAccess.kt + 26 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + IndicesAccess.kt + 30 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 31 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 39 + 1 + + + IndicesAccess.kt + 33 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + IndicesAccess.kt + 35 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + IndicesAccess.kt + 47 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + IndicesAccess.kt + 49 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + C + 16 + 1 + + + IndicesAccess.kt + 50 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 33 + 1 + + + IndicesAccess.kt + 72 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 42 + 1 + + + IndicesAccess.kt + 74 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + { + 16 + 1 + + + IndicesAccess.kt + 75 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 13 + 1 + + + IndicesAccess.kt + 91 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 107 + 1 + + + IndicesAccess.kt + 95 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 90 + 1 + + + IndicesAccess.kt + 138 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + IndicesAccess.kt + 151 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 19 + 1 + + + IndicesAccess.kt + 153 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + f + 13 + 1 + + + IndicesAccess.kt + 154 + testProject + light_idea_test_case + + Trailing comma recommendations + Missing line break + ] + 34 + 1 + + + IndicesAccess.kt + 156 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + IndicesAccess.kt + 158 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + IndicesAccess.kt + 160 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 45 + 1 + + + IndicesAccess.kt + 163 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 + + + IndicesAccess.kt + 165 + testProject + light_idea_test_case + + Trailing comma recommendations + Useless trailing comma + , + 51 + 1 \ No newline at end of file diff --git a/idea/testData/inspectionsLocal/trailingComma/missingLineBreak.kt b/idea/testData/inspectionsLocal/trailingComma/missingLineBreak.kt new file mode 100644 index 00000000000..728609a6a48 --- /dev/null +++ b/idea/testData/inspectionsLocal/trailingComma/missingLineBreak.kt @@ -0,0 +1,5 @@ +// COMPILER_ARGUMENTS: -XXLanguage:+TrailingCommas +// FIX: Add line break + +fun a(i: Int, + b: Boolean) = Unit \ No newline at end of file diff --git a/idea/testData/inspectionsLocal/trailingComma/missingLineBreak.kt.after b/idea/testData/inspectionsLocal/trailingComma/missingLineBreak.kt.after new file mode 100644 index 00000000000..a3c0b5a590d --- /dev/null +++ b/idea/testData/inspectionsLocal/trailingComma/missingLineBreak.kt.after @@ -0,0 +1,7 @@ +// COMPILER_ARGUMENTS: -XXLanguage:+TrailingCommas +// FIX: Add line break + +fun a( + i: Int, + b: Boolean, +) = Unit \ No newline at end of file diff --git a/idea/testData/inspectionsLocal/trailingComma/missingLineBreak2.kt b/idea/testData/inspectionsLocal/trailingComma/missingLineBreak2.kt new file mode 100644 index 00000000000..c116f583e49 --- /dev/null +++ b/idea/testData/inspectionsLocal/trailingComma/missingLineBreak2.kt @@ -0,0 +1,5 @@ +// COMPILER_ARGUMENTS: -XXLanguage:+TrailingCommas +// FIX: Add line break + +fun a(i: Int, + b: Boolean) = Unit \ No newline at end of file diff --git a/idea/testData/inspectionsLocal/trailingComma/missingLineBreak2.kt.after b/idea/testData/inspectionsLocal/trailingComma/missingLineBreak2.kt.after new file mode 100644 index 00000000000..a3c0b5a590d --- /dev/null +++ b/idea/testData/inspectionsLocal/trailingComma/missingLineBreak2.kt.after @@ -0,0 +1,7 @@ +// COMPILER_ARGUMENTS: -XXLanguage:+TrailingCommas +// FIX: Add line break + +fun a( + i: Int, + b: Boolean, +) = Unit \ No newline at end of file diff --git a/idea/testData/inspectionsLocal/trailingComma/missingLineBreak3.kt b/idea/testData/inspectionsLocal/trailingComma/missingLineBreak3.kt new file mode 100644 index 00000000000..87656474f4a --- /dev/null +++ b/idea/testData/inspectionsLocal/trailingComma/missingLineBreak3.kt @@ -0,0 +1,6 @@ +// COMPILER_ARGUMENTS: -XXLanguage:+TrailingCommas +// FIX: Add line break + +fun a(i: Int, + b: Boolean + , ) = Unit \ No newline at end of file diff --git a/idea/testData/inspectionsLocal/trailingComma/missingLineBreak3.kt.after b/idea/testData/inspectionsLocal/trailingComma/missingLineBreak3.kt.after new file mode 100644 index 00000000000..a3c0b5a590d --- /dev/null +++ b/idea/testData/inspectionsLocal/trailingComma/missingLineBreak3.kt.after @@ -0,0 +1,7 @@ +// COMPILER_ARGUMENTS: -XXLanguage:+TrailingCommas +// FIX: Add line break + +fun a( + i: Int, + b: Boolean, +) = Unit \ No newline at end of file diff --git a/idea/tests/org/jetbrains/kotlin/idea/inspections/LocalInspectionTestGenerated.java b/idea/tests/org/jetbrains/kotlin/idea/inspections/LocalInspectionTestGenerated.java index de1f3ea9293..0a4ada100b6 100644 --- a/idea/tests/org/jetbrains/kotlin/idea/inspections/LocalInspectionTestGenerated.java +++ b/idea/tests/org/jetbrains/kotlin/idea/inspections/LocalInspectionTestGenerated.java @@ -12320,6 +12320,36 @@ public class LocalInspectionTestGenerated extends AbstractLocalInspectionTest { runTest("idea/testData/inspectionsLocal/trailingComma/changeCommaPosition4.kt"); } + @TestMetadata("missingLineBreak.kt") + public void testMissingLineBreak() throws Exception { + runTest("idea/testData/inspectionsLocal/trailingComma/missingLineBreak.kt"); + } + + @TestMetadata("missingLineBreak2.kt") + public void testMissingLineBreak2() throws Exception { + runTest("idea/testData/inspectionsLocal/trailingComma/missingLineBreak2.kt"); + } + + @TestMetadata("missingLineBreak3.kt") + public void testMissingLineBreak3() throws Exception { + runTest("idea/testData/inspectionsLocal/trailingComma/missingLineBreak3.kt"); + } + + @TestMetadata("missingLineBreak.kt") + public void testMissingLineBreak() throws Exception { + runTest("idea/testData/inspectionsLocal/trailingComma/missingLineBreak.kt"); + } + + @TestMetadata("missingLineBreak2.kt") + public void testMissingLineBreak2() throws Exception { + runTest("idea/testData/inspectionsLocal/trailingComma/missingLineBreak2.kt"); + } + + @TestMetadata("missingLineBreak3.kt") + public void testMissingLineBreak3() throws Exception { + runTest("idea/testData/inspectionsLocal/trailingComma/missingLineBreak3.kt"); + } + @TestMetadata("removeComma.kt") public void testRemoveComma() throws Exception { runTest("idea/testData/inspectionsLocal/trailingComma/removeComma.kt");