mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
17857163fc
This change introduces an option to have the configuration split across several files using standard XInclude tags. This may be useful for more complex configs, or to include auto-generated parts into a manually written config file.
11 lines
341 B
XML
11 lines
341 B
XML
<?xml version="1.0"?>
|
|
<psalm
|
|
totallyTyped="true"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="https://getpsalm.org/schema/config"
|
|
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
|
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
|
>
|
|
<xi:include href="files.xml"/>
|
|
</psalm>
|