xref: /dokuwiki/vendor/openpsa/universalfeedcreator/.editorconfig (revision e6380ba37d6b3f7dd03146b3c03030ccc8c1b297)
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