Changeset 3676:f1f10044e637 for .editorconfig
- Timestamp:
- 01/24/18 10:43:03 (8 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
.editorconfig
r3671 r3676 8 8 # 1. Franck: creation (2017-12-04) 9 9 # 2. Franck: PSR-2 for PHP, add specific extension settings (2018-01-19) 10 # 3. Franck: switch to 2 spaces by default, only *.php and *.md use 4 spaces (2018-01-24) 10 11 11 12 # top-most EditorConfig file … … 17 18 insert_final_newline = true 18 19 charset = utf-8 19 indent_style = tab20 indent_size = 420 indent_style = space 21 indent_size = 2 21 22 trim_trailing_whitespace = true 22 23 23 # PHP 24 [*.php,*.tpl] 25 indent_style = space 26 indent_size = 4 27 28 # Javascript/JSon 29 [*.js,*.json] 24 # PHP - PSR-2 25 [*.php] 30 26 indent_style = space 31 27 indent_size = 4 … … 33 29 # Markdown 34 30 [*.md] 31 indent_style = space 32 indent_size = 4 35 33 trim_trailing_whitespace = false 36 37 # XML38 [*.xml]39 indent_style = space40 indent_size = 2
Note: See TracChangeset
for help on using the changeset viewer.