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