Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Code Refactoring and Analysis Plugin

This plugin offers simple code refactoring and analysis tools, perfect for those working on Java Gradle applications outside of IntelliJ IDEA. No more missing the magic of <C-A-l> or dealing with ineffective LSP :Format.

Setup

  1. Configuration: You can adjust the configuration and modify task names as needed:
tasks.register("format") {
    it.dependsOn("spotlessApply")
}

tasks.register("analyze") {
    it.dependsOn("checkstyleMain")
}
  1. Push to Local Maven Repository:

gradle publishToMavenLocal

  1. Integrate in Your Project:
buildscript {
    repositories {
        mavenLocal()        
    }
    dependencies {
        classpath 'com.simple:simple-formatter:0.0.2'
    }
}

apply plugin: 'com.simple.simple-formatter'

About

No description, website, or topics provided.

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages