
通过态代
复制guide-idea-plugin-pmd ├── .gradle └── src ├── main │ └── java │ └── cn.bugstack.guide.idea.plugin │ ├── rule │ │ ├── FastJsonAutoType.java │ │ ├── HardcodedIp.java │ │ └── ReplacePseudorandomGenerator.java │ └── utils │ └── InspectionBundle.java ├── resources │ ├── inspectionDescriptions │ │ ├── FastJsonAutoType.html │ │ ├── HardcodedIp.html │ │ └── ReplacePseudorandomGenerator.html │ └── META-INF │ └── plugin.xml ├── build.gradle └── gradle.properties 1.2.3.4.5.6.7.8.9.10.11.12.13.14.15.16.17.18.19.20.21.