Skip to content
/ Kibosh Public

Simple static analysis for source files designed to be run as part of a test suite

License

Notifications You must be signed in to change notification settings

dx42/Kibosh

Repository files navigation

Kibosh

Simple Java static analysis for source files designed to be run as part of a test suite.

For "real" static analysis, by all means use SpotBugs (successor to FindBugs), PMD, Checkstyle, etc...

This library is for quick-and-dirty checks against your code that can be accomplished with string and regular expression searching, and to quickly fill in the gaps for those other tools.

Sample JUnit 5 test that uses Kibosh to check for illegal tab characters and for consecutive blank lines in your Java source files:

package org.dx42.kibosh.runner;

import org.dx42.kibosh.rule.TextRule;
import org.junit.jupiter.api.Test;

class RunKiboshAgainstProjectSourceCodeTest {

    @Test
    void RunKibosh() {
        KiboshRunner runner = KiboshRunner.builder()
                .baseDirectory("src/main/java")
                .baseDirectory("src/test/java")
                .build();
        runner.applyRules(
                TextRule.builder()
                        .name("NoTabs")
                        .description("Use spaces rather than tabs")
                        .illegalString("\t")
                        .build(),
                TextRule.builder()
                        .name("NoConsecutiveBlankLines")
                        .description("Do not include consecutive blank/empty lines")
                        .illegalRegularExpression("\\n\\s*\\n\\s*\\n")
                        .build());
    }
}

See TextRule and KiboshRunner.

Maven Support

Kibosh is available from the Maven Central Repository:

  <dependency>
    <groupId>org.dx42</groupId>
    <artifactId>Kibosh</artifactId>
    <version>1.0.0</version>
    <scope>test</scope>
  </dependency>

About

Simple static analysis for source files designed to be run as part of a test suite

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages