All Downloads are FREE. Search and download functionalities are using the official Maven repository.

slack.lint.util.OptionLoadingDetector.kt Maven / Gradle / Ivy

The newest version!
// Copyright (C) 2023 Slack Technologies, LLC
// SPDX-License-Identifier: Apache-2.0
package slack.lint.util

import com.android.tools.lint.detector.api.Context
import com.android.tools.lint.detector.api.Detector

/** A [Detector] that supports reading the given [options]. */
abstract class OptionLoadingDetector(vararg options: LintOption) : Detector() {

  private val options = options.toList()

  override fun beforeCheckRootProject(context: Context) {
    super.beforeCheckRootProject(context)
    val config = context.configuration
    options.forEach { it.load(config) }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy