Created
December 20, 2017 15:19
-
-
Save Dobby89/2b374573cc014ecb1dba402736ff1a50 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # top-most EditorConfig file | |
| root = true | |
| # Unix-style newlines with a newline ending every file | |
| [*] | |
| indent_style = tab | |
| indent_size = tab | |
| tab_width = 4 | |
| end_of_line = lf | |
| charset = utf-8 | |
| trim_trailing_whitespace = true | |
| insert_final_newline = true | |
| [{package.json,.eslintrc}] | |
| quote_type = double | |
| indent_style = space | |
| indent_size = 2 | |
| [*.{js,jsx,ts}] | |
| quote_type = single | |
| curly_bracket_next_line = false | |
| spaces_around_operators = true | |
| spaces_around_brackets = none | |
| indent_brace_style = K&R | |
| continuation_indent_size = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment