idea安装checkstyle

参考资料:

https://www.jianshu.com/p/0c917f4cac1e

https://www.jianshu.com/p/25d2a197a59a

1. 安装插件

Settings->Plugins里,搜索Checkstyle,并且install安装

2.

idea安装checkstyle_第1张图片
image.png

3. 引入xml配置(在本地路径中下载好的,jenkins官网可下载
image.png


idea安装checkstyle_第2张图片
image.png

4. 自定义颜色

idea安装checkstyle_第3张图片
image.png

5. maven执行检查

jenkinsTest
    jenkins
    1.0-SNAPSHOT
    
        
            
                org.apache.maven.plugins
                maven-checkstyle-plugin
                2.17
                
                    google_checks.xml
                    UTF-8
                    true
                    false
                    true
                    0
                    warning
                
                
                    
                        checkstyle
                        validate
                        
                            check
                        
                    
                
                
                    
                        com.puppycrawl.tools
                        checkstyle
                        8.10.1
                    
                
            
        
    
    
        
            
                org.apache.maven.plugins
                maven-checkstyle-plugin
                2.17
                
                    
                        
                            checkstyle
                        
                    
                
            
        
    
Goal Report or Not Description
checkstyle:check No 检查代码,并可能导致构建失败
checkstyle:checkstyle Yes 检查代码并生成代码检查结果报表
checkstyle:checkstyle-aggregate Yes 对多模块的项目代码检查,并生产检查汇总的结果报表
image.png

你可能感兴趣的:(idea安装checkstyle)