Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reformat Markdown files to comply with the spec #4891

Merged
merged 1 commit into from Jun 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 14 additions & 14 deletions .github/CONTRIBUTING.md
Expand Up @@ -125,20 +125,20 @@ the detailed description of the rule.

```kotlin
/**
* Summary of the violation that this rule is concerned with,
* potentially extended by a brief description on why it is
* bad practice and what is usually done to eliminate it.
*
* Add more details if applicable...
*
* <noncompliant>
* // add the non-compliant code example here
* </noncompliant>
*
* <compliant>
* // add the compliant code example here
* </compliant>
*/
* Summary of the violation that this rule is concerned with,
* potentially extended by a brief description on why it is
* bad practice and what is usually done to eliminate it.
*
* Add more details if applicable...
*
* <noncompliant>
* // add the non-compliant code example here
* </noncompliant>
*
* <compliant>
* // add the compliant code example here
* </compliant>
*/
class SomeRule(config: Config = Config.empty) : Rule(config) {

}
Expand Down
2 changes: 1 addition & 1 deletion website/docs/introduction/compatibility.md
Expand Up @@ -27,7 +27,7 @@ The following table lists the version of the Gradle plugin we used to compile th
Consider **aligning** your Gradle plugin versions with the one listed below, as we can offer better support on Issues and Discussions for the listed versions of those tools.

| Detekt Version | Gradle Version | Kotlin Version | AGP Version | Java Target Level | JDK Version |
| -------------- | -------------- | -------------- | ----------- | ----------------- | ----------- |
|----------------|----------------|----------------|-------------|-------------------|-------------|
| `1.20.0` | `7.4.2` | `1.6.20` | `7.1.3` | `1.8` | `17` |
| `1.19.0` | `7.3.0` | `1.5.31` | `4.2.2` | `1.8` | `17` |
| `1.18.0` | `7.0.1` | `1.5.21` | `4.2.0` | `1.8` | `16` |
Expand Down