Skip to content

Commit

Permalink
Globally changed CheckStyle to Checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Oct 26, 2024
1 parent 51fa6fb commit 2c8c219
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions src/main/java/rife/bld/extension/CheckstyleOperation.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public CheckstyleOperation configurationFile(Path file) {
}

/**
* Prints all debug logging of CheckStyle utility.
* Prints all debug logging of Checkstyle utility.
*
* @param isDebug {@code true} or {@code false}
* @return the checkstyle operation
Expand All @@ -112,7 +112,7 @@ public CheckstyleOperation debug(boolean isDebug) {
}

/**
* Directory/file to exclude from CheckStyle. The path can be the full, absolute path, or relative to the current
* Directory/file to exclude from Checkstyle. The path can be the full, absolute path, or relative to the current
* path. Multiple excludes are allowed.
*
* @param path one or more paths
Expand All @@ -124,7 +124,7 @@ public CheckstyleOperation exclude(String... path) {
}

/**
* Directory/file to exclude from CheckStyle. The path can be the full, absolute path, or relative to the current
* Directory/file to exclude from Checkstyle. The path can be the full, absolute path, or relative to the current
* path. Multiple excludes are allowed.
*
* @param path one or more paths
Expand All @@ -136,7 +136,7 @@ public CheckstyleOperation exclude(File... path) {
}

/**
* Directory/file to exclude from CheckStyle. The path can be the full, absolute path, or relative to the current
* Directory/file to exclude from Checkstyle. The path can be the full, absolute path, or relative to the current
* path. Multiple excludes are allowed.
*
* @param path one or more paths
Expand All @@ -148,7 +148,7 @@ public CheckstyleOperation exclude(Path... path) {
}

/**
* Directory/file to exclude from CheckStyle. The path can be the full, absolute path, or relative to the current
* Directory/file to exclude from Checkstyle. The path can be the full, absolute path, or relative to the current
* path. Multiple excludes are allowed.
*
* @param paths the paths
Expand All @@ -161,7 +161,7 @@ public CheckstyleOperation exclude(Collection<File> paths) {
}

/**
* Directory/file to exclude from CheckStyle. The path can be the full, absolute path, or relative to the current
* Directory/file to exclude from Checkstyle. The path can be the full, absolute path, or relative to the current
* path. Multiple excludes are allowed.
*
* @param paths the paths
Expand All @@ -173,7 +173,7 @@ public CheckstyleOperation excludePaths(Collection<Path> paths) {
}

/**
* Directory/file pattern to exclude from CheckStyle. Multiple exclude are allowed.
* Directory/file pattern to exclude from Checkstyle. Multiple exclude are allowed.
*
* @param regex the pattern to exclude
* @return the checkstyle operation
Expand All @@ -184,7 +184,7 @@ public CheckstyleOperation excludeRegex(String... regex) {
}

/**
* Directory/file pattern to exclude from CheckStyle. Multiple exclude are allowed.
* Directory/file pattern to exclude from Checkstyle. Multiple exclude are allowed.
*
* @param regex the patterns to exclude
* @return the checkstyle operation
Expand All @@ -196,7 +196,7 @@ public CheckstyleOperation excludeRegex(Collection<String> regex) {
}

/**
* Directory/file to exclude from CheckStyle. The path can be the full, absolute path, or relative to the current
* Directory/file to exclude from Checkstyle. The path can be the full, absolute path, or relative to the current
* path. Multiple excludes are allowed.
*
* @param paths the paths
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package rife.bld.extension.checkstyle;

/**
* The Checkstyle output format for XML, sarif and default (plaib) logger.
* The Checkstyle output format for XML, sarif and default (plain) logger.
*/
public enum OutputFormat {
XML("xml"),
Expand Down

0 comments on commit 2c8c219

Please sign in to comment.