Update intellij-java-google-style.xml

Default intellij make simple line comment on first position like this:
|//   some code
Accoding google styleguide same ident level must be using for comments too (https://google.github.io/styleguide/javaguide.html#s4.2-block-indentation)
This option disable  commenting on first column, so comment will look like:
|    //some code
This commit is contained in:
Alexandr 2017-10-27 14:59:57 +06:00 committed by GitHub
parent ec88ff999b
commit eac87c4387

View File

@ -110,6 +110,7 @@
</indentOptions>
</codeStyleSettings>
<codeStyleSettings language="JAVA">
<option name="LINE_COMMENT_AT_FIRST_COLUMN" value="false" />
<option name="KEEP_CONTROL_STATEMENT_IN_ONE_LINE" value="false" />
<option name="KEEP_BLANK_LINES_IN_CODE" value="1" />
<option name="BLANK_LINES_AFTER_CLASS_HEADER" value="1" />