File .editorconfig

Last commit: Thu Nov 14 01:22:30 2019 +0100	Jan Dankert	Fix: Indenting JS and XML with 1 TAB.
1 ; This file is for unifying the coding style for different editors and IDEs. 2 ; More information at http://editorconfig.org 3 4 root = true 5 6 [*] 7 end_of_line = lf 8 insert_final_newline = false 9 charset = utf-8 10 tab_width = 4 11 12 [*.php] 13 indent_style = tab 14 indent_size = tab 15 16 [*.xml] 17 indent_style = tab 18 indent_size = tab 19 20 21 [*.js] 22 indent_style = tab 23 indent_size = tab 24 25 ; YAML must be indented by 2 spaces 26 [*.yml] 27 indent_style = space 28 indent_size = 2
Download .editorconfig
History Thu, 14 Nov 2019 01:22:30 +0100 Jan Dankert Fix: Indenting JS and XML with 1 TAB. Tue, 12 Nov 2019 22:49:28 +0100 Jan Dankert New: Nicer output of the whole configuration. Tue, 29 Oct 2019 21:47:26 +0100 Jan Dankert New: This file is for unifying the coding style for different editors and IDEs.