Last active
November 18, 2016 12:45
-
-
Save zeljic/91bc0f9ab3463f05de48964c6e5096e7 to your computer and use it in GitHub Desktop.
PHPStorm CodeStyle - CleanCode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<code_scheme name="CleanCode"> | |
<codeStyleSettings language="CSS"> | |
<indentOptions> | |
<option name="USE_TAB_CHARACTER" value="true"/> | |
</indentOptions> | |
</codeStyleSettings> | |
<codeStyleSettings language="HTML"> | |
<option name="RIGHT_MARGIN" value="500"/> | |
<indentOptions> | |
<option name="USE_TAB_CHARACTER" value="true"/> | |
</indentOptions> | |
</codeStyleSettings> | |
<codeStyleSettings language="JSON"> | |
<indentOptions> | |
<option name="INDENT_SIZE" value="4"/> | |
<option name="USE_TAB_CHARACTER" value="true"/> | |
</indentOptions> | |
</codeStyleSettings> | |
<codeStyleSettings language="JavaScript"> | |
<option name="KEEP_BLANK_LINES_IN_CODE" value="1"/> | |
<option name="BRACE_STYLE" value="2"/> | |
<option name="METHOD_BRACE_STYLE" value="2"/> | |
<indentOptions> | |
<option name="USE_TAB_CHARACTER" value="true"/> | |
</indentOptions> | |
</codeStyleSettings> | |
<codeStyleSettings language="PHP"> | |
<option name="BRACE_STYLE" value="2"/> | |
<option name="ELSE_ON_NEW_LINE" value="true"/> | |
<option name="KEEP_SIMPLE_METHODS_IN_ONE_LINE" value="true"/> | |
<indentOptions> | |
<option name="USE_TAB_CHARACTER" value="true"/> | |
</indentOptions> | |
</codeStyleSettings> | |
<codeStyleSettings language="SCSS"> | |
<indentOptions> | |
<option name="INDENT_SIZE" value="4"/> | |
<option name="USE_TAB_CHARACTER" value="true"/> | |
</indentOptions> | |
</codeStyleSettings> | |
<codeStyleSettings language="XML"> | |
<indentOptions> | |
<option name="USE_TAB_CHARACTER" value="true"/> | |
</indentOptions> | |
</codeStyleSettings> | |
</code_scheme> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment