Skip to content

Instantly share code, notes, and snippets.

@xwsg
Last active July 18, 2017 08:16
Show Gist options
  • Select an option

  • Save xwsg/cfd7788574eec1e869fdc95db8071b55 to your computer and use it in GitHub Desktop.

Select an option

Save xwsg/cfd7788574eec1e869fdc95db8071b55 to your computer and use it in GitHub Desktop.
Code things

Google Java Style Guide

中文

设置Code style scheme 为google style 下载 intellij-java-google-style.xml

File -> Settings -> Editor -> Code Style -> 右侧点击Scheme后的Manage...按钮 -> import...->Intellij IDEA code style XML -> 选择下载好的intellij-java-google-style.xml -> OK... -> Scheme 选择刚导入的 GoogleStyle -> OK

安装 checkstyle插件 下载 google checkstyle文件

配置checkstyle

File -> Settings -> Other Settings -> Checkstyle -> 添加一个配置。 需要稍微做一些改动,google规范时要求2个空格缩进,这里改成4个空格

<module name="Indentation">
    <property name="basicOffset" value="4"/>
    <property name="braceAdjustment" value="0"/>
    <property name="caseIndent" value="4"/>
    <property name="throwsIndent" value="4"/>
    <property name="lineWrappingIndentation" value="4"/>
    <property name="arrayInitIndent" value="4"/>
</module>

Github marketplace

zenhub

octotree

isometric-contributions

github-avatars

codacy

变量命名神器CODEIF

gitignore文件神器

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment