{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/detekt-config-detekt-yml/versions/1.14.1.json",
  "x-lintel": {
    "source": "https://www.schemastore.org/detekt-1.14.1.json",
    "sourceSha256": "db7a55da3d9cc0b8a7c72bc442e6bc66292b90af7a3249ab0acf98f12d195a0a",
    "fileMatch": [
      "detekt.yml",
      "detekt.yaml"
    ],
    "parsers": [
      "yaml"
    ]
  },
  "type": "object",
  "properties": {
    "build": {
      "type": "object",
      "properties": {
        "maxIssues": {
          "type": "number"
        },
        "excludeCorrectable": {
          "type": "boolean"
        },
        "weights": {
          "type": [
            "object",
            "null"
          ],
          "additionalProperties": {
            "type": "number"
          }
        }
      }
    },
    "config": {
      "type": "object",
      "properties": {
        "validation": {
          "type": "boolean"
        },
        "warningsAsErrors": {
          "type": "boolean"
        },
        "excludes": {
          "type": "string"
        }
      }
    },
    "processors": {
      "type": "object",
      "properties": {
        "active": {
          "type": "boolean"
        },
        "exclude": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      }
    },
    "console-reports": {
      "type": "object",
      "properties": {
        "active": {
          "type": "boolean"
        },
        "exclude": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      }
    },
    "output-reports": {
      "type": "object",
      "properties": {
        "active": {
          "type": "boolean"
        },
        "exclude": {
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "string"
          }
        }
      }
    },
    "comments": {
      "type": "object",
      "properties": {
        "active": {
          "type": "boolean"
        },
        "excludes": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "AbsentOrWrongFileLicense": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "licenseTemplateFile": {
              "type": "string"
            }
          }
        },
        "CommentOverPrivateFunction": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "CommentOverPrivateProperty": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EndOfSentenceFormat": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "endOfSentenceFormat": {
              "type": "string"
            }
          }
        },
        "UndocumentedPublicClass": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "searchInNestedClass": {
              "type": "boolean"
            },
            "searchInInnerClass": {
              "type": "boolean"
            },
            "searchInInnerObject": {
              "type": "boolean"
            },
            "searchInInnerInterface": {
              "type": "boolean"
            }
          }
        },
        "UndocumentedPublicFunction": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UndocumentedPublicProperty": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        }
      }
    },
    "complexity": {
      "type": "object",
      "properties": {
        "active": {
          "type": "boolean"
        },
        "ComplexCondition": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "threshold": {
              "type": "number"
            }
          }
        },
        "ComplexInterface": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "threshold": {
              "type": "number"
            },
            "includeStaticDeclarations": {
              "type": "boolean"
            },
            "includePrivateDeclarations": {
              "type": "boolean"
            }
          }
        },
        "ComplexMethod": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "threshold": {
              "type": "number"
            },
            "ignoreSingleWhenExpression": {
              "type": "boolean"
            },
            "ignoreSimpleWhenEntries": {
              "type": "boolean"
            },
            "ignoreNestingFunctions": {
              "type": "boolean"
            },
            "nestingFunctions": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        },
        "LabeledExpression": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "ignoredLabels": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        },
        "LargeClass": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "threshold": {
              "type": "number"
            }
          }
        },
        "LongMethod": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "threshold": {
              "type": "number"
            }
          }
        },
        "LongParameterList": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "functionThreshold": {
              "type": "number"
            },
            "constructorThreshold": {
              "type": "number"
            },
            "ignoreDefaultParameters": {
              "type": "boolean"
            },
            "ignoreDataClasses": {
              "type": "boolean"
            },
            "ignoreAnnotated": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        },
        "MethodOverloading": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "threshold": {
              "type": "number"
            }
          }
        },
        "NestedBlockDepth": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "threshold": {
              "type": "number"
            }
          }
        },
        "ReplaceSafeCallChainWithRun": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "StringLiteralDuplication": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "threshold": {
              "type": "number"
            },
            "ignoreAnnotation": {
              "type": "boolean"
            },
            "excludeStringsWithLessThan5Characters": {
              "type": "boolean"
            },
            "ignoreStringsRegex": {
              "type": "string"
            }
          }
        },
        "TooManyFunctions": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "thresholdInFiles": {
              "type": "number"
            },
            "thresholdInClasses": {
              "type": "number"
            },
            "thresholdInInterfaces": {
              "type": "number"
            },
            "thresholdInObjects": {
              "type": "number"
            },
            "thresholdInEnums": {
              "type": "number"
            },
            "ignoreDeprecated": {
              "type": "boolean"
            },
            "ignorePrivate": {
              "type": "boolean"
            },
            "ignoreOverridden": {
              "type": "boolean"
            }
          }
        }
      }
    },
    "coroutines": {
      "type": "object",
      "properties": {
        "active": {
          "type": "boolean"
        },
        "GlobalCoroutineUsage": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "RedundantSuspendModifier": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "SuspendFunWithFlowReturnType": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        }
      }
    },
    "empty-blocks": {
      "type": "object",
      "properties": {
        "active": {
          "type": "boolean"
        },
        "EmptyCatchBlock": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "allowedExceptionNameRegex": {
              "type": "string"
            }
          }
        },
        "EmptyClassBlock": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EmptyDefaultConstructor": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EmptyDoWhileBlock": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EmptyElseBlock": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EmptyFinallyBlock": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EmptyForBlock": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EmptyFunctionBlock": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "ignoreOverridden": {
              "type": "boolean"
            }
          }
        },
        "EmptyIfBlock": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EmptyInitBlock": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EmptyKtFile": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EmptySecondaryConstructor": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EmptyTryBlock": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EmptyWhenBlock": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EmptyWhileBlock": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        }
      }
    },
    "exceptions": {
      "type": "object",
      "properties": {
        "active": {
          "type": "boolean"
        },
        "ExceptionRaisedInUnexpectedLocation": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "methodNames": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        },
        "InstanceOfCheckForException": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        },
        "NotImplementedDeclaration": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "PrintStackTrace": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "RethrowCaughtException": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "ReturnFromFinally": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "ignoreLabeled": {
              "type": "boolean"
            }
          }
        },
        "SwallowedException": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "ignoredExceptionTypes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "allowedExceptionNameRegex": {
              "type": "string"
            }
          }
        },
        "ThrowingExceptionFromFinally": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "ThrowingExceptionInMain": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "ThrowingExceptionsWithoutMessageOrCause": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "exceptions": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        },
        "ThrowingNewInstanceOfSameException": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "TooGenericExceptionCaught": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "exceptionNames": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "allowedExceptionNameRegex": {
              "type": "string"
            }
          }
        },
        "TooGenericExceptionThrown": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "exceptionNames": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        }
      }
    },
    "formatting": {
      "type": "object",
      "properties": {
        "active": {
          "type": "boolean"
        },
        "android": {
          "type": "boolean"
        },
        "autoCorrect": {
          "type": "boolean"
        },
        "AnnotationOnSeparateLine": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "AnnotationSpacing": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "ArgumentListWrapping": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "ChainWrapping": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "CommentSpacing": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "EnumEntryNameCase": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "Filename": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "FinalNewline": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            },
            "insertFinalNewLine": {
              "type": "boolean"
            }
          }
        },
        "ImportOrdering": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            },
            "layout": {
              "type": "string"
            }
          }
        },
        "Indentation": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            },
            "indentSize": {
              "type": "number"
            },
            "continuationIndentSize": {
              "type": "number"
            }
          }
        },
        "MaximumLineLength": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "maxLineLength": {
              "type": "number"
            }
          }
        },
        "ModifierOrdering": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "MultiLineIfElse": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "NoBlankLineBeforeRbrace": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "NoConsecutiveBlankLines": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "NoEmptyClassBody": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "NoEmptyFirstLineInMethodBlock": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "NoLineBreakAfterElse": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "NoLineBreakBeforeAssignment": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "NoMultipleSpaces": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "NoSemicolons": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "NoTrailingSpaces": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "NoUnitReturn": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "NoUnusedImports": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "NoWildcardImports": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "PackageName": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "ParameterListWrapping": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            },
            "indentSize": {
              "type": "number"
            }
          }
        },
        "SpacingAroundColon": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "SpacingAroundComma": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "SpacingAroundCurly": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "SpacingAroundDot": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "SpacingAroundDoubleColon": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "SpacingAroundKeyword": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "SpacingAroundOperators": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "SpacingAroundParens": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "SpacingAroundRangeOperator": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "SpacingBetweenDeclarationsWithAnnotations": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "SpacingBetweenDeclarationsWithComments": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        },
        "StringTemplate": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "autoCorrect": {
              "type": "boolean"
            }
          }
        }
      }
    },
    "naming": {
      "type": "object",
      "properties": {
        "active": {
          "type": "boolean"
        },
        "ClassNaming": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "classPattern": {
              "type": "string"
            }
          }
        },
        "ConstructorParameterNaming": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "parameterPattern": {
              "type": "string"
            },
            "privateParameterPattern": {
              "type": "string"
            },
            "excludeClassPattern": {
              "type": "string"
            },
            "ignoreOverridden": {
              "type": "boolean"
            }
          }
        },
        "EnumNaming": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "enumEntryPattern": {
              "type": "string"
            }
          }
        },
        "ForbiddenClassName": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "forbiddenName": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        },
        "FunctionMaxLength": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "maximumFunctionNameLength": {
              "type": "number"
            }
          }
        },
        "FunctionMinLength": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "minimumFunctionNameLength": {
              "type": "number"
            }
          }
        },
        "FunctionNaming": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "functionPattern": {
              "type": "string"
            },
            "excludeClassPattern": {
              "type": "string"
            },
            "ignoreOverridden": {
              "type": "boolean"
            },
            "ignoreAnnotated": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        },
        "FunctionParameterNaming": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "parameterPattern": {
              "type": "string"
            },
            "excludeClassPattern": {
              "type": "string"
            },
            "ignoreOverridden": {
              "type": "boolean"
            }
          }
        },
        "InvalidPackageDeclaration": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "rootPackage": {
              "type": "string"
            }
          }
        },
        "MatchingDeclarationName": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "mustBeFirst": {
              "type": "boolean"
            }
          }
        },
        "MemberNameEqualsClassName": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "ignoreOverridden": {
              "type": "boolean"
            }
          }
        },
        "NonBooleanPropertyPrefixedWithIs": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        },
        "ObjectPropertyNaming": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "constantPattern": {
              "type": "string"
            },
            "propertyPattern": {
              "type": "string"
            },
            "privatePropertyPattern": {
              "type": "string"
            }
          }
        },
        "PackageNaming": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "packagePattern": {
              "type": "string"
            }
          }
        },
        "TopLevelPropertyNaming": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "constantPattern": {
              "type": "string"
            },
            "propertyPattern": {
              "type": "string"
            },
            "privatePropertyPattern": {
              "type": "string"
            }
          }
        },
        "VariableMaxLength": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "maximumVariableNameLength": {
              "type": "number"
            }
          }
        },
        "VariableMinLength": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "minimumVariableNameLength": {
              "type": "number"
            }
          }
        },
        "VariableNaming": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "variablePattern": {
              "type": "string"
            },
            "privateVariablePattern": {
              "type": "string"
            },
            "excludeClassPattern": {
              "type": "string"
            },
            "ignoreOverridden": {
              "type": "boolean"
            }
          }
        }
      }
    },
    "performance": {
      "type": "object",
      "properties": {
        "active": {
          "type": "boolean"
        },
        "ArrayPrimitive": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "ForEachOnRange": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        },
        "SpreadOperator": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        },
        "UnnecessaryTemporaryInstantiation": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        }
      }
    },
    "potential-bugs": {
      "type": "object",
      "properties": {
        "active": {
          "type": "boolean"
        },
        "Deprecation": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "DuplicateCaseInWhenExpression": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EqualsAlwaysReturnsTrueOrFalse": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EqualsWithHashCodeExist": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "ExplicitGarbageCollectionCall": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "HasPlatformType": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "IgnoredReturnValue": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "restrictToAnnotatedMethods": {
              "type": "boolean"
            },
            "returnValueAnnotations": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        },
        "ImplicitDefaultLocale": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "ImplicitUnitReturnType": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "allowExplicitReturnType": {
              "type": "boolean"
            }
          }
        },
        "InvalidRange": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "IteratorHasNextCallsNextMethod": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "IteratorNotThrowingNoSuchElementException": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "LateinitUsage": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "excludeAnnotatedProperties": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "ignoreOnClassesPattern": {
              "type": "string"
            }
          }
        },
        "MapGetWithNotNullAssertionOperator": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "MissingWhenCase": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "NullableToStringCall": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "RedundantElseInWhen": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UnconditionalJumpStatementInLoop": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UnnecessaryNotNullOperator": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UnnecessarySafeCall": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UnreachableCode": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UnsafeCallOnNullableType": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UnsafeCast": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UselessPostfixExpression": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "WrongEqualsTypeParameter": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        }
      }
    },
    "style": {
      "type": "object",
      "properties": {
        "active": {
          "type": "boolean"
        },
        "ClassOrdering": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "CollapsibleIfStatements": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "DataClassContainsFunctions": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "conversionFunctionPrefix": {
              "type": "string"
            }
          }
        },
        "DataClassShouldBeImmutable": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EqualsNullCall": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "EqualsOnSignatureLine": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "ExplicitCollectionElementAccessMethod": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "ExplicitItLambdaParameter": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "ExpressionBodySyntax": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "includeLineWrapping": {
              "type": "boolean"
            }
          }
        },
        "ForbiddenComment": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "values": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "allowedPatterns": {
              "type": "string"
            }
          }
        },
        "ForbiddenImport": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "imports": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "forbiddenPatterns": {
              "type": "string"
            }
          }
        },
        "ForbiddenMethodCall": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "methods": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        },
        "ForbiddenPublicDataClass": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "ignorePackages": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        },
        "ForbiddenVoid": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "ignoreOverridden": {
              "type": "boolean"
            },
            "ignoreUsageInGenerics": {
              "type": "boolean"
            }
          }
        },
        "FunctionOnlyReturningConstant": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "ignoreOverridableFunction": {
              "type": "boolean"
            },
            "excludedFunctions": {
              "type": "string"
            },
            "excludeAnnotatedFunction": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        },
        "LibraryCodeMustSpecifyReturnType": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "LibraryEntitiesShouldNotBePublic": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "LoopWithTooManyJumpStatements": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "maxJumpCount": {
              "type": "number"
            }
          }
        },
        "MagicNumber": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "ignoreNumbers": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "ignoreHashCodeFunction": {
              "type": "boolean"
            },
            "ignorePropertyDeclaration": {
              "type": "boolean"
            },
            "ignoreLocalVariableDeclaration": {
              "type": "boolean"
            },
            "ignoreConstantDeclaration": {
              "type": "boolean"
            },
            "ignoreCompanionObjectPropertyDeclaration": {
              "type": "boolean"
            },
            "ignoreAnnotation": {
              "type": "boolean"
            },
            "ignoreNamedArgument": {
              "type": "boolean"
            },
            "ignoreEnums": {
              "type": "boolean"
            },
            "ignoreRanges": {
              "type": "boolean"
            }
          }
        },
        "MandatoryBracesIfStatements": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "MandatoryBracesLoops": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "MaxLineLength": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "maxLineLength": {
              "type": "number"
            },
            "excludePackageStatements": {
              "type": "boolean"
            },
            "excludeImportStatements": {
              "type": "boolean"
            },
            "excludeCommentStatements": {
              "type": "boolean"
            }
          }
        },
        "MayBeConst": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "ModifierOrder": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "NestedClassesVisibility": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "NewLineAtEndOfFile": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "NoTabs": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "OptionalAbstractKeyword": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "OptionalUnit": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "OptionalWhenBraces": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "PreferToOverPairSyntax": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "ProtectedMemberInFinalClass": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "RedundantExplicitType": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "RedundantVisibilityModifierRule": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "ReturnCount": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "max": {
              "type": "number"
            },
            "excludedFunctions": {
              "type": "string"
            },
            "excludeLabeled": {
              "type": "boolean"
            },
            "excludeReturnFromLambda": {
              "type": "boolean"
            },
            "excludeGuardClauses": {
              "type": "boolean"
            }
          }
        },
        "SafeCast": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "SerialVersionUIDInSerializableClass": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "SpacingBetweenPackageAndImports": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "ThrowsCount": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "max": {
              "type": "number"
            }
          }
        },
        "TrailingWhitespace": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UnderscoresInNumericLiterals": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "acceptableDecimalLength": {
              "type": "number"
            }
          }
        },
        "UnnecessaryAbstractClass": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludeAnnotatedClasses": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        },
        "UnnecessaryAnnotationUseSiteTarget": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UnnecessaryApply": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UnnecessaryInheritance": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UnnecessaryLet": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UnnecessaryParentheses": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UntilInsteadOfRangeTo": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UnusedImports": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UnusedPrivateClass": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UnusedPrivateMember": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "allowedNames": {
              "type": "string"
            }
          }
        },
        "UseArrayLiteralsInAnnotations": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UseCheckNotNull": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UseCheckOrError": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UseDataClass": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludeAnnotatedClasses": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "allowVars": {
              "type": "boolean"
            }
          }
        },
        "UseEmptyCounterpart": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UseIfInsteadOfWhen": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UseRequire": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UseRequireNotNull": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UselessCallOnNotNull": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "UtilityClassWithPublicConstructor": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "VarCouldBeVal": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            }
          }
        },
        "WildcardImport": {
          "type": "object",
          "properties": {
            "active": {
              "type": "boolean"
            },
            "excludes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "excludeImports": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        }
      }
    }
  },
  "id": "https://json.schemastore.org/detekt-1.14.1.json"
}
