Created
March 16, 2021 08:27
-
-
Save Sean12mps/39e9f3b28f84bf4533d787ce599e115e to your computer and use it in GitHub Desktop.
This file is for unifying the coding style for different editors and IDEs
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
| # This file is for unifying the coding style for different editors and IDEs | |
| # editorconfig.org | |
| root = true | |
| [*] | |
| charset = utf-8 | |
| end_of_line = lf | |
| insert_final_newline = true | |
| trim_trailing_whitespace = true | |
| indent_style = tab | |
| indent_size = 4 | |
| tab_width = 4 | |
| [*.txt,wp-config-sample.php] | |
| end_of_line = crlf | |
| [{*.json,*.yml,*.md,.babelrc,.bowerrc,.browserslistrc,.postcssrc}] | |
| indent_style = space | |
| indent_size = 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment