xref: /dokuwiki/vendor/openpsa/universalfeedcreator/.editorconfig (revision 3fc5af51b792a6ec4a57de0bbe92ff4d4138bb84)
1# This file is for unifying the coding style for different editors and IDEs
2# editorconfig.org
3
4# PHP PSR-2 Coding Standards
5# http://www.php-fig.org/psr/psr-2/
6
7root = true
8
9[*.php]
10charset = utf-8
11end_of_line = lf
12insert_final_newline = true
13trim_trailing_whitespace = true
14indent_style = space
15indent_size = 4
16
17