Aggiunta psalm per migliorare lo sviluppo
This commit is contained in:
parent
98c5bf135d
commit
a53373a2d8
|
@ -402,7 +402,7 @@ function release(done) {
|
|||
|
||||
archive.pipe(output);
|
||||
|
||||
// Individuazione dei file da aggiungere
|
||||
// Individuazione dei file da aggiungere e escludere
|
||||
glob([
|
||||
'**/*',
|
||||
'!checksum.json',
|
||||
|
@ -417,6 +417,7 @@ function release(done) {
|
|||
'files/temp/.gitkeep',
|
||||
'!logs/**',
|
||||
'!config.inc.php',
|
||||
'!psalm.xml',
|
||||
'!update/structure.php',
|
||||
'!**/*.(lock|phar|log|zip|bak|jar|txt)',
|
||||
'!**/~*',
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0"?>
|
||||
<psalm
|
||||
errorLevel="7"
|
||||
resolveFromConfigFile="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"
|
||||
>
|
||||
<projectFiles>
|
||||
<directory name="src" />
|
||||
<ignoreFiles>
|
||||
<directory name="vendor" />
|
||||
</ignoreFiles>
|
||||
</projectFiles>
|
||||
</psalm>
|
Loading…
Reference in New Issue