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