Skip to content

Commit

Permalink
Rename s/analysis-dev/saveourtool/g in URLs
Browse files Browse the repository at this point in the history
### What's done:

 * URLs (incl. those from badges) have been corrected to accommodate for the organization name change.
  • Loading branch information
unix-junkie committed May 27, 2022
1 parent 23ebf80 commit 345d5c1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
![Build and test](https://github.com/cqfn/diKTat/workflows/Build%20and%20test/badge.svg)
![deteKT static analysis](https://github.com/cqfn/diKTat/workflows/Run%20deteKT/badge.svg)
![diKTat code style](https://github.com/cqfn/diKTat/workflows/Run%20diKTat%20from%20release%20version/badge.svg?branch=master)
[![codecov](https://codecov.io/gh/analysis-dev/diKTat/branch/master/graph/badge.svg)](https://codecov.io/gh/analysis-dev/diKTat)
[![codecov](https://codecov.io/gh/saveourtool/diKTat/branch/master/graph/badge.svg)](https://codecov.io/gh/saveourtool/diKTat)

[![Releases](https://img.shields.io/github/v/release/cqfn/diKTat)](https://github.com/cqfn/diKTat/releases)
[![Maven Central](https://img.shields.io/maven-central/v/org.cqfn.diktat/diktat-rules)](https://mvnrepository.com/artifact/org.cqfn.diktat)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ open class DiktatJavaExecTaskBase @Inject constructor(
val javaVersion = getJavaExecJvmVersion()
project.logger.debug("For diktat execution jvm version $javaVersion will be used")
if (javaVersion.majorVersion.toInt() >= MIN_JVM_REQUIRES_ADD_OPENS) {
// https://github.com/analysis-dev/diktat/issues/1182#issuecomment-1023099713
// https://github.com/saveourtool/diktat/issues/1182#issuecomment-1023099713
project.logger.debug("Adding `--add-opens` flag for JVM version >=$MIN_JVM_REQUIRES_ADD_OPENS compatibility")
jvmArgs("--add-opens", "java.base/java.lang=ALL-UNNAMED")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ class NewlinesRule(configRules: List<RulesConfig>) : DiktatRule(

private fun checkForComplexExpression(node: ASTNode) {
if (node.getRootNode().getFilePath().isGradleScript()) {
// this inspection is softened for gradle scripts, see https://github.com/analysis-dev/diktat/issues/1148
// this inspection is softened for gradle scripts, see https://github.com/saveourtool/diktat/issues/1148
return
}
COMPLEX_EXPRESSION.warn(configRules, emitWarn, isFixMode, node.text, node.startOffset, node)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class SmartCastRule(configRules: List<RulesConfig>) : DiktatRule(
}

if (node.elementType == WHEN) {
// Rule is simplified after https://github.com/analysis-dev/diktat/issues/1168
// Rule is simplified after https://github.com/saveourtool/diktat/issues/1168
return
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ class SmartCastRuleWarnTest : LintTestBase(::SmartCastRule) {
}

@Test
@Disabled("Rule is simplified after https://github.com/analysis-dev/diktat/issues/1168")
@Disabled("Rule is simplified after https://github.com/saveourtool/diktat/issues/1168")
@Tag(SMART_CAST_NEEDED)
fun `smart cast in when bad`() {
lintMethod(
Expand Down

0 comments on commit 345d5c1

Please sign in to comment.